/* ===================================
   DEHNERT FACHBETRIEB - MAIN STYLES
   =================================== */

/* --- CSS Variables --- */
:root {
    --primary: #14263d;
    --accent: #1d3f6e;
    --secondary: #ffffff;
    --light-gray: #f5f5f5;
    --neutral-gray: #cccccc;
    --text-dark: #333333;
    --text-light: #666666;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    z-index: 10000;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    border-radius: 4px;
}

.skip-link:focus {
    top: 10px;
    outline: 3px solid var(--accent);
}

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

/* --- Section --- */
.section {
    padding: 80px 0;
}

.section--gray {
    background: var(--light-gray);
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.section__title--center {
    text-align: center;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section__text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.section__cta {
    text-align: center;
    margin-top: 50px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--secondary);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.header__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.logo__text {
    display: inline-block;
    transition: var(--transition);
}

.header__logo:hover .logo__text {
    color: var(--accent);
}

/* --- Navigation --- */
.nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__item {
    position: relative;
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    display: inline-block;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__link--active {
    color: var(--accent);
}

/* --- Dropdown --- */
.nav__item--dropdown {
    position: relative;
}

.nav__dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    cursor: pointer;
    background: none;
    border: none;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.nav__dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--secondary);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 16px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.nav__dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-link {
    display: block;
    padding: 12px 24px;
    color: var(--text-dark);
    font-size: 0.938rem;
    transition: var(--transition);
}

.nav__dropdown-link:hover {
    background: var(--light-gray);
    color: var(--accent);
}

/* --- Burger Menu --- */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.burger__line {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.active .burger__line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger.active .burger__line:nth-child(2) {
    opacity: 0;
}

.burger.active .burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero__background {
    position: absolute;
    inset: 0;
    background: url('../images/hero-placeholder.webp') center/cover no-repeat;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 38, 61, 0.6);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--secondary);
    max-width: 800px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn--primary {
    background: var(--accent);
    color: var(--secondary);
}

.btn--primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn--secondary:hover {
    background: var(--accent);
    color: var(--secondary);
}

.btn--cta {
    background: var(--secondary);
    color: var(--primary);
    font-size: 1.125rem;
    padding: 16px 40px;
}

.btn--cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn--overlay {
    background: var(--secondary);
    color: var(--primary);
    padding: 12px 24px;
    font-size: 0.938rem;
}

.btn--overlay:hover {
    transform: scale(1.05);
}

.btn--pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(29, 63, 110, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(29, 63, 110, 0);
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
}

.about__content h2 {
    margin-bottom: 24px;
}

.about__content .btn {
    margin-top: 20px;
}

/* ===================================
   SERVICES CARDS
   =================================== */

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

.card {
    background: var(--secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card__image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card__image:hover img {
    transform: scale(1.05);
}

.card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 38, 61, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card__image:hover .card__overlay {
    opacity: 1;
}

.card__content {
    padding: 24px;
}

.card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.card__text {
    font-size: 0.938rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   TESTIMONIALS
   =================================== */

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

.testimonial {
    background: var(--secondary);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial__text {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial__name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.testimonial__location {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
}

.cta__text {
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 32px;
    opacity: 0.95;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--primary);
    color: var(--secondary);
    padding: 60px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer__subtitle {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer__text {
    font-size: 0.938rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 12px;
}

.footer__text a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ===================================
   FLOATING BUTTONS
   =================================== */

.whatsapp-btn,
.back-to-top {
    position: fixed;
    bottom: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-btn {
    right: 30px;
    background: #25D366;
    color: var(--secondary);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.back-to-top {
    right: 30px;
    bottom: 100px;
    background: var(--accent);
    color: var(--secondary);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: scale(1.1);
    background: var(--primary);
}

/* ===================================
   ANIMATIONS
   =================================== */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

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

/* ===================================
   SERVICE PAGES (DETAIL LAYOUT)
   =================================== */

.service-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    background: var(--primary);
    overflow: hidden;
}

.service-hero__background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.service-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 38, 61, 0.7);
    z-index: 2;
}

.service-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--secondary);
}

.service-hero__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-hero__subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* --- Info Sections --- */
.info-section {
    padding: 80px 0;
}

.info-section--gray {
    background: var(--light-gray);
}

.info-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-section__grid--reverse {
    direction: rtl;
}

.info-section__grid--reverse > * {
    direction: ltr;
}

.info-section__image img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.info-section__content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.info-section__content ul {
    list-style: none;
    margin: 24px 0;
}

.info-section__content li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-light);
}

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

/* --- Gallery --- */
.gallery-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-section {
    padding: 80px 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--secondary);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

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

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

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

.form-honeypot {
    display: none;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-info__item {
    margin-bottom: 24px;
}

.contact-info__item h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-info__item p {
    color: var(--text-light);
}

.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

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

/* ===================================
   RESPONSIVE - TABLET
   =================================== */

@media (max-width: 968px) {
    /* Navigation Mobile */
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--secondary);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav__list {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav__item {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav__link {
        width: 100%;
        text-align: left;
        padding: 16px 0;
        display: block;
    }
    
    .nav__link::after {
        display: none;
    }
    
    .nav__dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 16px 0;
    }
    
    .nav__dropdown {
        position: static;
        box-shadow: none;
        background: var(--light-gray);
        margin: 0;
        padding: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
    }
    
    .nav__dropdown.active {
        max-height: 1000px;
        padding: 8px 0;
    }
    
    .nav__dropdown-link {
        padding: 12px 20px;
    }
    
    .burger {
        display: flex;
    }
    
    /* Hero */
    .hero {
        min-height: 500px;
        height: 70vh;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.125rem;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .section__subtitle {
        font-size: 1rem;
    }
    
    /* About Grid */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Info Section */
    .info-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-section__grid--reverse {
        direction: ltr;
    }
    
    /* Services Grid */
    .services__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
    
    /* Contact Grid */
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Gallery */
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }
    
    /* Service Hero */
    .service-hero__title {
        font-size: 2.5rem;
    }
    
    .service-hero__subtitle {
        font-size: 1.125rem;
    }
    
    /* CTA */
    .cta__title {
        font-size: 2rem;
    }
    
    .cta__text {
        font-size: 1rem;
    }
    
    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */

@media (max-width: 640px) {
    /* Container */
    .container {
        padding: 0 16px;
    }
    
    /* Header */
    .header__content {
        padding: 16px 0;
    }
    
    .logo__text {
        font-size: 1.25rem;
    }
    
    /* Hero */
    .hero {
        min-height: 450px;
        height: 60vh;
        margin-top: 60px;
    }
    
    .hero__title {
        font-size: 1.75rem;
        padding: 0 10px;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero__content {
        padding: 0 10px;
    }
    
    /* Section */
    .section {
        padding: 50px 0;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .section__subtitle {
        font-size: 0.938rem;
    }
    
    .section__header {
        margin-bottom: 40px;
    }
    
    /* Services Grid - KOMPLETT 1 SPALTE */
    .services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .card__image {
        height: 200px;
    }
    
    .card__content {
        padding: 20px;
    }
    
    .card__title {
        font-size: 1.125rem;
        margin-bottom: 10px;
    }
    
    .card__text {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.938rem;
    }
    
    .btn--cta {
        font-size: 1rem;
        padding: 14px 32px;
    }
    
    /* Testimonials */
    .testimonial {
        padding: 24px;
    }
    
    .testimonial__text {
        font-size: 0.938rem;
    }
    
    /* CTA */
    .cta {
        padding: 60px 0;
    }
    
    .cta__title {
        font-size: 1.75rem;
    }
    
    .cta__text {
        font-size: 0.938rem;
    }
    
    /* Service Hero */
    .service-hero {
        min-height: 350px;
        height: 50vh;
    }
    
    .service-hero__title {
        font-size: 2rem;
    }
    
    .service-hero__subtitle {
        font-size: 1rem;
    }
    
    /* Info Section */
    .info-section {
        padding: 60px 0;
    }
    
    .info-section__content h2 {
        font-size: 1.5rem;
    }
    
    /* Gallery */
    .gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery img {
        height: 220px;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 24px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 16px; /* Verhindert Auto-Zoom auf iOS */
    }
    
    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer__title {
        font-size: 1.25rem;
    }
    
    .footer__subtitle {
        font-size: 1rem;
    }
    
    /* Floating Buttons */
    .whatsapp-btn,
    .back-to-top {
        width: 50px;
        height: 50px;
        right: 16px;
    }
    
    .back-to-top {
        bottom: 85px;
    }
    
    .whatsapp-btn svg,
    .back-to-top svg {
        width: 24px;
        height: 24px;
    }
}

/* ===================================
   RESPONSIVE - SEHR KLEINE GERÄTE
   =================================== */

@media (max-width: 400px) {
    .hero__title {
        font-size: 1.5rem;
    }
    
    .section__title {
        font-size: 1.5rem;
    }
    
    .services__grid {
        gap: 16px;
    }
    
    .card__image {
        height: 180px;
    }
    
    .card__content {
        padding: 16px;
    }
    
    .card__title {
        font-size: 1rem;
    }
    
    .card__text {
        font-size: 0.813rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .whatsapp-btn,
    .back-to-top {
        width: 46px;
        height: 46px;
    }
}

/* ===================================
   LANDSCAPE MODE FÜR KLEINE GERÄTE
   =================================== */

@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: auto;
    }
    
    .service-hero {
        height: 100vh;
        min-height: auto;
    }
    
    .nav {
        max-height: calc(100vh - 60px);
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .header,
    .nav,
    .burger,
    .whatsapp-btn,
    .back-to-top,
    .cta {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .section {
        page-break-inside: avoid;
    }
}