/* ==========================================================================
   LEGACY / PAGE-SPECIFIC (core modules linked directly in HTML)
   ========================================================================== */

/* Remaining page-specific tweaks ... */

/* Service Detail Image Frame (Consistency with About) */
.service-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.service-image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-orange);
    border-radius: 20px;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-detail-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 20px;
    display: block;
    border: 1px solid var(--surface-border);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Service Detail Minimalist (No Frame, Pop-Up) */
.service-image-container.no-frame .service-image-frame {
    display: none;
}

.service-image-container.no-frame .service-detail-image img {
    transform: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.service-image-container.no-frame:hover .service-detail-image img {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Contact Side-by-Side Fix */
@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: stretch;
        display: grid !important;
        /* Force grid */
    }
}

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

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    padding: 0 4rem;
}

.slider-btn {
    background: var(--surface-color);
    color: var(--text-heading);
    border: 1px solid var(--surface-border);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(var(--accent-orange-rgb), 0.4);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .slider-controls {
        display: none;
    }
}

.form-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group label {
    color: var(--text-heading);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(var(--accent-orange-rgb), 0.1);
}

.contact-form select {
    appearance: none;
    cursor: pointer;
    color: var(--text-body);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.contact-form select option {
    background-color: var(--surface-color);
    color: var(--text-body);
    padding: 10px;
}

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

.contact-form input.touched:invalid,
.contact-form select.touched:invalid,
.contact-form textarea.touched:invalid {
    border-color: #ff5252;
    box-shadow: 0 0 10px rgba(255, 82, 82, 0.15);
}

.contact-form input.touched:valid,
.contact-form select.touched:valid,
.contact-form textarea.touched:valid {
    border-color: var(--accent-green);
}

/* Success Message */
.form-success-message {
    text-align: center;
    padding: 2rem 0;
    animation: fadeInPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.form-success-message h3 {
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.form-success-message p {
    color: var(--text-muted);
    line-height: 1.6;
}

@keyframes fadeInPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Map Container */
.map-container.compact-map {
    height: 200px;
    margin-top: 2rem;
    border: 1px solid var(--surface-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    border-radius: 24px;
    width: 100%;
    height: 100%;
}

/* Hero Content Additions */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.3) 60%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}



/* New CTA Section */
.cta-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--surface-color) 100%);
    padding: 5rem 5%;
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--surface-border);
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
}

.hero-subtitle {
    font-size: 2rem;
    color: #fff;
    max-width: 800px;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}

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

.cta-button.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333333;
    box-shadow: none;
    pointer-events: auto;
}

.cta-button.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Active Nav State - Removed to avoid premature highlighting */
/*
.nav-links a.active::after {
    width: 100%;
}
*/

/* Mobile Contact Buttons */
.mobile-only-contact {
    display: none;
    margin-top: 2rem;
    width: 100%;
    padding: 0 2rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1rem;
    background: var(--accent-orange);
    color: #fff !important;
    border-radius: 12px;
    font-weight: 600;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 1.1rem !important;
    transition: var(--transition-smooth);
}

.mobile-contact-btn::after {
    display: none !important;
}

.mobile-contact-btn.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange) !important;
}

.mobile-contact-btn:hover {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 160, 91, 0.4);
}

.mobile-contact-btn.btn-outline:hover {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: #fff !important;
}

/* Lightbox */
.lightbox {
    display: flex;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    justify-content: center;
    align-items: center;
}

.lightbox.show {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content-wrapper {
    position: relative;
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.show .lightbox-content-wrapper {
    transform: scale(1);
}

.lightbox-placeholder {
    width: 100%;
    height: 70vh;
    background: linear-gradient(135deg, var(--bg-color) 0%, #1f1f1f 100%);
    border-radius: 16px;
    border: 1px solid var(--surface-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--accent-orange);
    transform: rotate(90deg);
}

.lightbox-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: -60px;
    right: -60px;
    transform: translateY(-50%);
    z-index: 10000;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--accent-orange);
    transform: scale(1.1);
}

.lightbox-caption {
    text-align: center;
    color: #ccc;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Further Smooth Animations */
.service-card,
.timeline-step,
.testimonial-card {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-grid:not(.gallery-grid--justified):not(.home-gallery-grid) > .gallery-item {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Animations */
@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.2, 0, 0, 1), transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s cubic-bezier(0.2, 0, 0, 1), transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

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

/* Responsiveness */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: 300px;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

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

    .services-grid,
    .gallery-grid:not(.home-gallery-grid),
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .about-text {
        order: 2;
    }

    .placeholder-image {
        order: 1;
    }

    .timeline-container {
        flex-direction: column;
        gap: 2.5rem;
        align-items: stretch;
        padding-left: 0;
        margin-top: 3rem;
        position: relative;
    }

    /* Line mittig hinter icons */
    .timeline-line {
        top: 30px;
        left: 30px;
        width: 2px;
        height: calc(100% - 60px);
        background: rgba(255, 255, 255, 0.15);
        z-index: 0;
        opacity: 1 !important;
        transform: scaleY(0) !important;
        transform-origin: top;
        transition: transform 1.2s cubic-bezier(0.8, 0, 0.2, 1) 0.8s !important;
    }

    .timeline-line.visible {
        transform: scaleY(1) !important;
    }

    .timeline-step {
        display: flex;
        text-align: left;
        align-items: center;
        gap: 1.5rem;
        padding: 0;
        width: 100%;
        position: relative;
    }

    .timeline-step .timeline-icon {
        margin: 0;
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
        z-index: 2;
        position: relative;
        background: var(--bg-color);
    }

    .timeline-content {
        display: flex;
        align-items: baseline;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .timeline-content h4 {
        margin-right: 0.5rem;
        margin-bottom: 0;
        white-space: nowrap;
    }

    .mobile-only-contact {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3.2rem;
        padding-left: 3%;
        margin-left: 0;
        line-height: 1.1;
    }


    /* Hero Typography moved to layout.css */

    .lightbox-nav {
        left: 10px;
        right: 10px;
    }

    .lightbox-placeholder {
        height: 50vh;
    }

}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
    border: 2px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

* {
    scrollbar-width: thin;
    scrollbar-color: #333 var(--bg-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--surface-color);
    color: var(--accent-orange);
    border: 1px solid var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    bottom: 100px;
    /* Above footer */
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--accent-orange);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(var(--accent-orange-rgb), 0.4);
}

/* Parallax Section */
.parallax-section {
    background-image: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.95) 100%), url('https://images.unsplash.com/photo-1596704017254-9b121068fb20?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    border-bottom: none;
}

/* Section Backgrounds & Shadows */
.section {
    background: transparent;
    position: relative;
    z-index: 10;
}

/* Boxen-Styles: Fokus auf Wertigkeit & Handwerk */
.service-card.glassmorph-box,
.testimonial-card,
.timeline-step,
.about-text.glassmorph-box,
.contact-info.glassmorph-box,
.contact-form-container.glassmorph-box {
    background: var(--surface-ivory) !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transition: var(--transition-smooth) !important;
}

.service-card:hover,
.testimonial-card:hover,
.timeline-step:hover,
.about-text:hover,
.contact-info:hover,
.contact-form-container:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Process Timeline Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.timeline-step {
    background: var(--surface-ivory);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.timeline-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    font-family: var(--font-heading);
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-heading);
}

.process-image {
    width: 100%;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.timeline-step:hover .process-image img {
    transform: scale(1.05);
}

.timeline-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-body);
}

/* Smoother Testimonial Animation */
.testimonial-card {
    transition: opacity 0.4s ease, transform 0.4s ease !important;
}

/* Service Images */
.service-image {
    width: 100%;
    height: 180px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .timeline-step {
        align-items: flex-start;
    }

    .timeline-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
}



/* WhatsApp Floating Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        display: none;
    }
}

/* --- Added Layout Styles --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.glassmorph-box {
    background: var(--surface-ivory);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
}

.process-row {
    transition: background 0.3s ease;
}

.process-row:hover {
    background: rgba(0, 0, 0, 0.02);
}

@media (max-width: 768px) {

    .contact-grid,
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .process-row {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 1rem;
    }

    .process-number {
        margin: 0 auto;
    }
}

/* Footer Logo Hover Effect - Fixed to avoid black silhouette issues */
.footer-logo-img {
    filter: brightness(0) invert(1) !important; /* Force white start */
    transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.footer-logo:hover .footer-logo-img {
    /* Correct filter to turn black into orange #C96A2B */
    filter: invert(53%) sepia(74%) saturate(954%) hue-rotate(347deg) brightness(85%) contrast(93%) !important;
}

/* Gallery Page Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    aspect-ratio: 1/1;
    background-color: var(--surface-color);
    border-radius: 16px;
    border: 1px solid var(--brand-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-all);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-grid:not(.gallery-grid--justified):not(.home-gallery-grid) > .gallery-item:hover {
    border-color: var(--brand-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-item.placeholder-image {
    background: linear-gradient(135deg, var(--bg-brand-bg) 0%, #eeeeee 100%);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .gallery-grid:not(.home-gallery-grid) {
        grid-template-columns: 1fr;
    }
}

/* --- New Architectural Layout Styles --- */
.wood-section {
    background-image: var(--wood-pattern);
    background-size: 40px 40px;
}

.contact-modern-card input:focus, 
.contact-modern-card textarea:focus {
    border-bottom-color: var(--brand-accent) !important;
}

.contact-modern-card input::placeholder,
.contact-modern-card textarea::placeholder {
    color: rgba(0,0,0,0.2);
    font-weight: 400;
}

@media (max-width: 992px) {
    #contact > .container > div {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    .contact-info-column {
        position: static !important;
    }
    
    .contact-info-column h2 {
        font-size: 2.5rem !important;
    }
}

/* ==================== Legal Modal Styles ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}
.modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: var(--surface-color);
    border-radius: 12px;
    max-width: 90%;
    width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
    from { transform: translateY(-20px); }
    to { transform: translateY(0); }
}
.legal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}
.legal-close:hover {
    color: var(--accent-orange);
}

@media (max-width: 576px) {
    .contact-modern-card {
        padding: 2rem !important;
    }
}