/* Globale Variablen */
:root {
    --primary-color: #818cf8;
    --primary-hover: #6366f1;
    --text-color: #333;
    --text-secondary: #666;
    --bg-color: #ffffff;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-start: #818cf8;
    --gradient-end: #6366f1;
}

/* Dark Mode */
.dark-theme {
    --text-color: #e5e7eb;
    --text-secondary: #9ca3af;
    --bg-color: #111827;
    --nav-bg: rgba(17, 24, 39, 0.95);
    --card-bg: #1f2937;
    --border-color: #374151;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    box-shadow: 0 2px 4px var(--shadow-color);
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 1.1rem;
}

.nav-link.whatsapp {
    background: #25D366;
    color: white;
}

.nav-link.whatsapp:hover {
    background: #128C7E;
}

.nav-link.highlight {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 15px;
    z-index: 10;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Quick Info Bar */
.quick-info {
    background: var(--card-bg);
    padding: 0.5rem 0;
    margin-top: 80px;
    border-bottom: 1px solid var(--border-color);
}

.quick-info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.quick-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.quick-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-info a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/window-cleaning-hero.png');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: white;
    color: var(--primary-color);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    background: var(--bg-color);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-cta.consultation {
    background: var(--primary-color);
    color: white;
}

.service-cta.consultation:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Window Types Section */
.window-types {
    padding: 4rem 2rem;
    background: var(--bg-color);
}

.window-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.window-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.window-type-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.window-type-card:hover {
    transform: translateY(-5px);
}

.window-type-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.window-type-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.window-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.window-price.highlight {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.window-price span:last-child {
    font-size: 1rem;
    color: var(--text-secondary);
}

.window-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.window-features li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    padding-left: 1.5rem;
    position: relative;
}

.window-features li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.window-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
}

.window-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-secondary);
}

.pricing-note p {
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background: var(--bg-color);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Reviews Section */
.reviews {
    padding: 4rem 2rem;
    background: var(--bg-color);
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.review-card:hover {
    transform: translateY(-5px);
}

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

.review-stars {
    color: #fbbf24;
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.review-author i {
    font-size: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: var(--bg-color);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.contact-form h3 {
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
}

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

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.submit-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--card-bg);
    padding: 4rem 2rem 2rem;
    color: var(--text-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--primary-hover);
    box-shadow: 0 4px 15px rgba(129, 140, 248, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px var(--shadow-color);
    z-index: 1000;
    border-top: 2px solid var(--primary-color);
}

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

.cookie-content p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-accept {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 1rem;
}

.cookie-accept:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 8px 15px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
    }

    .logo-main {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    .logo-sub {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--nav-bg);
        padding: 1.5rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 6px var(--shadow-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem 1.2rem;
        border-radius: 8px;
        background: var(--bg-color);
        justify-content: center;
        font-size: 1.1rem;
    }

    .nav-link.highlight {
        margin-top: 0.5rem;
        background: var(--primary-color);
        color: white;
        border: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1.2rem;
        font-size: 1.1rem;
    }

    /* Quick Info */
    .quick-info .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    .info-item {
        width: 100%;
        justify-content: center;
        font-size: 1.1rem;
    }

    /* Services & Cards */
    .services,
    .window-types,
    .features,
    .reviews {
        padding: 3rem 1rem;
    }

    .services h2,
    .window-types h2,
    .features h2,
    .reviews h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .services-grid,
    .window-types-grid,
    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .window-type-card,
    .feature-card,
    .review-card {
        padding: 1.5rem;
    }

    /* Contact Form */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .submit-button {
        padding: 1.2rem;
        font-size: 1.1rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    /* WhatsApp Button */
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Cookie Banner */
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-content p {
        font-size: 0.9rem;
    }

    .cookie-accept {
        width: 100%;
        padding: 1rem;
    }

    /* Logo */
    .logo-image {
        height: 40px;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-sub {
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.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;
}

/* Logo Styles */
.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

/* Grüne Preise */
.window-price.highlight {
    color: #2ecc71;
    font-weight: 600;
}

.service-price span {
    color: #2ecc71;
    font-weight: 600;
}

.pricing-note p {
    color: #2ecc71;
}

/* Legal Content Styles */
.legal-content {
    max-width: 800px;
    margin: 80px auto 40px;
    padding: 0 20px;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.legal-section p {
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .legal-content {
        margin-top: 60px;
    }
}

/* Payment Methods Page */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.payment-method {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-method i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.payment-method h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.payment-method p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

.window-price.highlight.price-green {
    color: #4CAF50;
    font-weight: 700;
}

.window-price.highlight.price-green span {
    color: #4CAF50;
}

.developer-credit {
    color: white;
}

.developer-credit a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.developer-credit a:hover {
    opacity: 0.8;
}

.footer-legal .legal-link {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: opacity 0.3s ease;
}

.footer-legal .legal-link:hover {
    opacity: 0.8;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    padding: 1rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(10px);
    height: 100vh;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    padding-top: 80px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 12px;
    background: var(--card-bg);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-menu-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.mobile-menu-link i {
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
}

.mobile-menu-link.whatsapp {
    background: #25D366;
    color: white;
}

.mobile-menu-link.whatsapp:hover {
    background: #128C7E;
}

.mobile-menu-link.highlight {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.mobile-menu-link.highlight:hover {
    background: white;
    color: var(--primary-color);
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}

/* Mobile Navigation Icons */
.mobile-nav-icons {
    display: none;
    align-items: center;
    gap: 1.5rem;
    margin-left: 1rem;
}

.mobile-whatsapp {
    color: #25D366;
    font-size: 2.4rem;
    transition: all 0.3s ease;
    background: white;
    padding: 0.6rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.mobile-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #25D366;
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

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

    .mobile-nav-icons {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }
} 