/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-900: #2d7a3a;
    --green-800: #3a9148;
    --green-700: #4caf50;
    --green-600: #66bb6a;
    --green-500: #81c784;
    --green-400: #a5d6a7;
    --green-300: #c8e6c9;
    --green-200: #e8f5e9;
    --green-100: #f1f8f2;

    --gray-900: #1a1a2e;
    --gray-800: #2d2d44;
    --gray-700: #4a4a5a;
    --gray-600: #6b6b7b;
    --gray-500: #8b8b9b;
    --gray-400: #b0b0be;
    --gray-300: #d1d1db;
    --gray-200: #e8e8ee;
    --gray-100: #f4f4f7;
    --white: #ffffff;

    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--green-800);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-900);
    color: var(--white);
    padding: 16px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 14px;
    margin: 0;
    color: var(--gray-300);
}

.cookie-content a {
    color: var(--green-400);
    text-decoration: underline;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-small {
    padding: 8px 18px;
    font-size: 14px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.btn-primary {
    background: var(--green-700);
    color: var(--white);
    border-color: var(--green-700);
}

.btn-primary:hover {
    background: var(--green-800);
    border-color: var(--green-800);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--green-800);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--green-100);
    color: var(--green-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .header .container {
        height: 64px;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 0 14px;
    }
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gray-900);
}

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

@media (max-width: 768px) {
    .logo-img {
        height: 26px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 22px;
    }
}

.logo-icon {
    font-size: 22px;
}

.logo-text {
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.3px;
    color: var(--gray-700);
}

.logo-text strong {
    font-size: 14px;
    color: var(--green-800);
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-800);
    background: var(--green-100);
}

.header-cta {
    background: var(--green-700);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
}

.header-cta:hover {
    background: var(--green-800);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--gray-900);
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,60,25,0.78) 0%, rgba(40,120,50,0.68) 100%);
    z-index: 1;
}

/* Hero Dots */
.hero-dots {
    display: flex;
    gap: 8px;
    margin-top: 32px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

.hero-dot:hover {
    border-color: var(--white);
}

/* Hero entrance animations */
.anim-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}
.d1 { animation-delay: 0.2s; }
.d2 { animation-delay: 0.4s; }
.d3 { animation-delay: 0.6s; }
.d4 { animation-delay: 0.8s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 24px 80px;
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    color: var(--green-300);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--green-100);
    color: var(--green-800);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2,
.about-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--gray-600);
}

/* ===== LEISTUNGEN ===== */
.leistungen {
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-300);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--green-200);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== ÜBER UNS ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-image-placeholder {
    aspect-ratio: 4/5;
    background: var(--green-100);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gray-500);
    font-size: 14px;
    text-align: center;
    border: 2px dashed var(--green-300);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--green-700);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 13px;
    opacity: 0.9;
}

.about-content .section-tag {
    display: inline-block;
}

.about-content p {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.about-features {
    list-style: none;
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
}

.about-features svg {
    flex-shrink: 0;
}

/* ===== VORHER/NACHHER GALERIE ===== */
.galerie {
    background: var(--gray-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.compare-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: col-resize;
    box-shadow: var(--shadow-lg);
}

.compare-before,
.compare-after {
    position: absolute;
    inset: 0;
}

.compare-before {
    z-index: 2;
    width: 50%;
    overflow: hidden;
}

.compare-after {
    z-index: 1;
}

.compare-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
}

.compare-before img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-before .compare-placeholder {
    min-width: 100%;
    width: 100%;
}

.compare-label {
    position: absolute;
    bottom: 12px;
    padding: 4px 12px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    z-index: 5;
    pointer-events: none;
}

.compare-label-before {
    left: 12px;
}

.compare-label-after {
    right: 12px;
}

.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: col-resize;
}

.compare-handle-line {
    width: 3px;
    flex: 1;
    background: white;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.compare-handle-circle {
    width: 44px;
    height: 44px;
    background: var(--green-700);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.compare-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

/* ===== IMPRESSIONEN GALERIE ===== */
.impressions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.impression-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.impression-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impression-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: background var(--transition);
}

.impression-card:hover .impression-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
}

.impression-overlay span {
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.impression-large {
    grid-row: span 2;
}

.gallery-note {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--gray-500);
    font-style: italic;
}

@media (max-width: 768px) {
    .impressions-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
    }

    .impression-large {
        grid-row: span 1;
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .impressions-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .impression-large {
        grid-column: span 1;
    }
}

.impressionen {
    background: var(--white);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== KONTAKT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

.contact-details {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
    font-size: 15px;
    color: var(--gray-600);
}

.contact-item a:hover {
    color: var(--green-700);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    color: var(--gray-600);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--green-700);
    color: var(--white);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-800);
    transition: all var(--transition);
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
}

input::placeholder,
textarea::placeholder {
    color: var(--gray-400);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z' fill='%236b6b7b'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--green-700);
}

.form-check label {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.5;
}

/* File Upload */
.file-upload {
    position: relative;
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    background: var(--gray-100);
}

.file-upload:hover,
.file-upload.dragover {
    border-color: var(--green-600);
    background: var(--green-100);
}

.file-upload-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.file-upload-text {
    font-size: 14px;
    color: var(--gray-600);
}

.file-upload-text strong {
    color: var(--green-700);
}

.file-upload-hint {
    font-size: 12px;
    color: var(--gray-500);
}

.file-upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.file-upload-preview:empty {
    display: none;
}

.file-preview-item {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--gray-200);
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-preview-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.form-note {
    margin-top: 12px;
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
}

/* Form validation */
input.invalid,
textarea.invalid {
    border-color: #e74c3c;
}

.form-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
}

.form-success {
    background: var(--green-100);
    color: var(--green-900);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: var(--gray-400);
}

.footer-brand .logo-text strong {
    color: var(--green-400);
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-500);
}

.footer h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--green-400);
}

.footer-contact p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--green-400);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--green-700);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 900;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--green-800);
    transform: translateY(-2px);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    z-index: 900;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* ===== SCROLL ANIMATIONS ===== */
[data-aos],
.service-card,
.compare-slider,
.impression-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

[data-aos].visible,
.service-card.visible,
.compare-slider.visible,
.impression-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section entrance */
.anim-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}

.anim-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service card hover lift */
.service-card {
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-xl);
    border-color: var(--green-400);
}

/* Impression card zoom */
.impression-card img {
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.impression-card:hover img {
    transform: scale(1.06);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    /* Mobile Nav */
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 20px;
        transform: translateY(-120%);
        transition: transform var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav.open {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 16px;
        display: block;
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero mobile */
    .hero-content {
        padding: 80px 20px 60px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.6rem);
    }

    .hero-sub {
        font-size: 1rem;
    }

    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* About mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-badge {
        bottom: -10px;
        right: 10px;
    }

    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Contact mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* CTA */
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding-top: 100px;
    padding-bottom: 60px;
}

.legal-page h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-page p,
.legal-page li {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.legal-page ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-page a {
    color: var(--green-700);
    text-decoration: underline;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-weight: 500;
    color: var(--green-700);
}

.legal-back:hover {
    color: var(--green-800);
}
