/* Domain Buchhaltung Website - Modern Professional Design */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #EAEAEA;
    background: #1B1F3B;
    overflow-x: hidden;
}

/* === COLORS === */
:root {
    --primary-bg: #1B1F3B;
    --accent-lime: #B8E500;
    --accent-coral: #FF5F5D;
    --accent-turquoise: #2AD7D0;
    --text-light: #EAEAEA;
    --text-white: #FFFFFF;
    --gradient-diagonal: linear-gradient(135deg, rgba(184, 229, 0, 0.7) 0%, rgba(255, 95, 93, 0.7) 100%);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--accent-lime);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-coral);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* === HEADER & NAVIGATION === */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(27, 31, 59, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navigation {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-lime);
    text-transform: lowercase;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--gradient-diagonal);
    color: var(--text-white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-lime);
    transition: all 0.3s ease;
}

/* === MAIN CONTENT === */
.main-content {
    margin-top: 80px;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-diagonal);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./img/PjXKv4.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-coral);
    color: var(--text-white);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 95, 93, 0.3);
}

.cta-button:hover {
    background: var(--accent-lime);
    color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 229, 0, 0.4);
}

/* === SECTIONS === */
.section {
    padding: 5rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 3rem;
    background: var(--gradient-diagonal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === WAVY DIVIDERS === */
.wave-divider {
    height: 60px;
    background: var(--accent-turquoise);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    margin: 2rem 0;
}

.wave-divider.reverse {
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
}

/* === ABOUT SECTION === */
.about {
    background: rgba(42, 215, 208, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--accent-turquoise);
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* === SERVICES SECTION === */
.services {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-lime);
    background: rgba(184, 229, 0, 0.1);
}

.service-icon {
    width: 100%;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--accent-lime);
    transition: all 0.3s ease;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    border-color: var(--accent-coral);
    transform: scale(1.02);
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--accent-lime);
    margin-bottom: 1rem;
}

.service-price {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--gradient-diagonal);
    border-radius: 10px;
    text-align: center;
}

.service-price strong {
    color: var(--text-white);
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* === WHY CHOOSE US === */
.why-choose {
    background: rgba(255, 95, 93, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 95, 93, 0.2);
    transform: scale(1.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--accent-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
}

/* === PROCESS SECTION === */
.process {
    padding: 6rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--accent-turquoise);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-diagonal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

/* === TESTIMONIALS === */
.testimonials {
    background: rgba(42, 215, 208, 0.1);
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-lime);
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent-lime);
}

/* === CONTACT FORM === */
.contact-section {
    padding: 6rem 0;
    background: rgba(184, 229, 0, 0.05);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-white);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-lime);
    background: rgba(255, 255, 255, 0.1);
}

.form-control::placeholder {
    color: rgba(234, 234, 234, 0.6);
}

select.form-control {
    cursor: pointer;
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

select.form-control option {
    background: var(--primary-bg);
    color: var(--text-white);
    padding: 0.5rem;
}

select.form-control:focus option {
    background: #2A2F4F;
    color: var(--text-white);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--accent-lime);
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-diagonal);
    color: var(--text-white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 229, 0, 0.3);
}

/* === CONTACT INFO === */
.contact-info-section {
    background: rgba(255, 95, 93, 0.1);
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    border: 3px solid var(--accent-turquoise);
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: var(--accent-lime);
    transform: scale(1.02);
}

.map-container img,
.map-container iframe {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* === COOKIE POPUP === */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 31, 59, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    padding: 1.5rem;
    border-top: 3px solid var(--accent-lime);
    transition: opacity 0.3s ease;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept {
    background: var(--accent-lime);
    color: var(--primary-bg);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: var(--accent-coral);
    color: var(--text-white);
}

.cookie-policy {
    color: var(--accent-turquoise);
    font-size: 0.9rem;
}

/* === FOOTER === */
.main-footer {
    background: #0F1223;
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--accent-turquoise);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--accent-lime);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-coral);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    text-align: center;
    color: rgba(234, 234, 234, 0.7);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(27, 31, 59, 0.98);
        flex-direction: column;
        padding: 2rem;
        border-top: 2px solid var(--accent-lime);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }

    /* PERFEKTE Mobile Services - Vertikale Anordnung */
    .services {
        padding: 4rem 0;
    }
    
    .services-grid {
        display: flex !important;
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .service-card {
        width: 100%;
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 400px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.08);
        border: 2px solid rgba(184, 229, 0, 0.3);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-coral);
        box-shadow: 0 8px 30px rgba(255, 95, 93, 0.2);
    }
    
    .service-icon {
        width: 100%;
        height: 180px;
        margin-bottom: 1.2rem;
        border-radius: 12px;
        border: 2px solid var(--accent-lime);
        overflow: hidden;
    }
    
    .service-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        text-align: center;
        color: var(--accent-lime);
    }
    
    .service-card p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        text-align: center;
        color: var(--text-light);
    }
    
    .service-price {
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
        background: var(--gradient-diagonal);
        text-align: center;
    }
    
    .service-price strong {
        font-size: 1.1rem;
        color: var(--text-white);
    }

    /* PERFEKTE Mobile Features - Vertikale Anordnung */
    .why-choose {
        padding: 4rem 0;
    }
    
    .features-grid {
        display: flex !important;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
        width: 100%;
    }
    
    .feature-item {
        width: 100%;
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 380px;
        text-align: center;
        background: rgba(255, 95, 93, 0.15);
        border-radius: 15px;
        border: 2px solid rgba(255, 95, 93, 0.3);
        box-shadow: 0 4px 18px rgba(255, 95, 93, 0.2);
        transition: all 0.3s ease;
    }
    
    .feature-item:hover {
        transform: translateY(-3px);
        background: rgba(255, 95, 93, 0.2);
        box-shadow: 0 6px 25px rgba(255, 95, 93, 0.3);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 1rem;
        background: var(--accent-coral);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        color: var(--accent-coral);
    }
    
    .feature-item p {
        font-size: 1rem;
        line-height: 1.5;
        color: var(--text-light);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    /* Ultra Mobile Services - Vertikale Stapel-Anordnung */
    .services {
        padding: 3rem 0;
    }
    
    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        padding: 0;
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }
    
    .service-card {
        width: 100%;
        margin: 0;
        padding: 1.8rem 1.2rem;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(184, 229, 0, 0.4);
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transform: translateY(0);
        transition: all 0.3s ease;
    }
    
    .service-card:active {
        transform: translateY(-2px);
        background: rgba(184, 229, 0, 0.15);
    }
    
    .service-icon {
        width: 100%;
        height: 150px;
        margin-bottom: 1rem;
        border-radius: 12px;
        border: 2px solid var(--accent-lime);
        overflow: hidden;
    }
    
    .service-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: none;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        text-align: center;
        color: var(--accent-lime);
        font-weight: 700;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
        text-align: center;
        color: var(--text-light);
    }
    
    .service-price {
        padding: 0.8rem;
        margin-top: 1rem;
        border-radius: 10px;
        background: var(--gradient-diagonal);
        text-align: center;
    }
    
    .service-price strong {
        font-size: 1.1rem;
        color: var(--text-white);
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

    /* Ultra Mobile Features - Vertikale Stapel-Anordnung */
    .why-choose {
        padding: 3rem 0;
    }
    
    .features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
        padding: 0;
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }
    
    .feature-item {
        width: 100%;
        margin: 0;
        padding: 1.8rem 1.2rem;
        text-align: center;
        background: rgba(255, 95, 93, 0.18);
        border-radius: 15px;
        border: 2px solid rgba(255, 95, 93, 0.4);
        box-shadow: 0 4px 18px rgba(255, 95, 93, 0.25);
        transition: all 0.3s ease;
    }
    
    .feature-item:active {
        transform: translateY(-2px);
        background: rgba(255, 95, 93, 0.25);
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin: 0 auto 1rem;
        background: var(--accent-coral);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 10px rgba(255, 95, 93, 0.3);
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        color: var(--accent-coral);
        font-weight: 700;
    }
    
    .feature-item p {
        font-size: 0.95rem;
        line-height: 1.4;
        color: var(--text-light);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step::after {
        display: none;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    /* Mobile map optimization */
    .map-container {
        clip-path: none;
        border-radius: 15px;
        margin-top: 2rem;
        height: 300px;
    }
    
    .map-container iframe {
        height: 300px;
        border-radius: 15px;
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-details h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

/* === EXTRA SMALL MOBILE (320px-380px) === */
@media (max-width: 380px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Extra kleine Mobile Services - Vertikaler Stack */
    .services-grid {
        margin: 0 0.5rem;
        padding: 0;
        gap: 1.5rem;
        width: calc(100% - 1rem);
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        max-width: none;
        border-radius: 12px;
    }
    
    .service-icon {
        height: 130px;
        margin-bottom: 0.8rem;
        border-radius: 10px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .service-price {
        padding: 0.8rem;
        margin-top: 0.8rem;
        border-radius: 8px;
    }
    
    .service-price strong {
        font-size: 1rem;
    }
    
    /* Extra kleine Mobile Features - Vertikaler Stack */
    .features-grid {
        margin: 0 0.5rem;
        padding: 0;
        gap: 1.2rem;
        width: calc(100% - 1rem);
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
        max-width: none;
        border-radius: 12px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .map-container {
        height: 250px;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* === ADVANCED RESPONSIVE === */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .section {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    /* Tablet services optimization */
    .services-grid {
        gap: 1.8rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 2rem;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(184, 229, 0, 0.2);
    }
    
    .service-icon {
        height: 180px;
        border-radius: 12px;
        border-width: 2px;
    }
    
    /* Tablet features optimization */  
    .feature-item {
        padding: 1.8rem;
        background: rgba(255, 95, 93, 0.12);
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .about-image {
        clip-path: none;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .map-container {
        clip-path: none;
        border-radius: 15px;
        height: 350px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

/* === ENHANCED ANIMATIONS === */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes mobileSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.3s;
}

.service-card:nth-child(3) {
    animation-delay: 0.5s;
}

.feature-item:hover .feature-icon {
    animation: float 2s ease-in-out infinite;
}

/* Mobile animations */
@media (max-width: 768px) {
    .service-card {
        animation: mobileSlideIn 0.6s ease-out forwards;
    }
    
    .feature-item {
        animation: mobileSlideIn 0.6s ease-out forwards;
    }
    
    .service-card:nth-child(1) { animation-delay: 0.2s; }
    .service-card:nth-child(2) { animation-delay: 0.4s; }
    .service-card:nth-child(3) { animation-delay: 0.6s; }
    
    .feature-item:nth-child(1) { animation-delay: 0.1s; }
    .feature-item:nth-child(2) { animation-delay: 0.3s; }
    .feature-item:nth-child(3) { animation-delay: 0.5s; }
    .feature-item:nth-child(4) { animation-delay: 0.7s; }
}

/* === ADVANCED GRID LAYOUTS === */
@supports (display: grid) {
    .container {
        display: grid;
        grid-template-columns: minmax(auto, 1200px);
        justify-content: center;
        padding: 0 2rem;
    }
}

/* === PRINT STYLES === */
@media print {
    .main-header,
    .cookie-popup,
    .cta-button,
    .submit-btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .policy-content {
        background: white !important;
        color: black !important;
    }
}

/* === MOBILE LANDSCAPE OPTIMIZATION === */
@media (max-width: 768px) and (orientation: landscape) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-icon {
        height: 140px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .feature-item {
        padding: 1.2rem 1rem;
    }
}

@media (max-width: 480px) and (orientation: landscape) {
    .hero {
        min-height: 70vh;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .service-icon {
        height: 120px;
    }
}

/* === TOUCH OPTIMIZATION === */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .feature-item:hover {
        transform: none;
    }
    
    .service-card,
    .feature-item {
        transition: background-color 0.3s ease;
    }
    
    .service-card:active {
        background: rgba(184, 229, 0, 0.2);
    }
    
    .feature-item:active {
        background: rgba(255, 95, 93, 0.25);
    }
}

/* === ACCESSIBILITY ENHANCEMENTS === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* === FOCUS STATES === */
button:focus,
input:focus,
select:focus,
a:focus {
    outline: 2px solid var(--accent-lime);
    outline-offset: 2px;
}

/* === LOADING STATES === */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* === ERROR STATES === */
.error {
    border-color: var(--accent-coral) !important;
    background-color: rgba(255, 95, 93, 0.1) !important;
}

/* === SPECIAL EFFECTS === */
.gradient-text {
    background: var(--gradient-diagonal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* === POLICY PAGES STYLES === */
.policy-page {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.policy-content h1 {
    color: var(--accent-lime);
    margin-bottom: 2rem;
    text-align: center;
}

.policy-content h2 {
    color: var(--accent-coral);
    margin: 2rem 0 1rem;
}

.policy-content h3 {
    color: var(--accent-turquoise);
    margin: 1.5rem 0 0.5rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* === SUCCESS PAGE === */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-diagonal);
}

.success-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    max-width: 600px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--accent-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-bg);
}
