* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2d3748;
    line-height: 1.6;
    background: #fff;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #4a5568;
}

a {
    color: #d97706;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b45309;
}

button {
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: none;
}

/* ===== COLORS ===== */
:root {
    --primary: #d97706;
    --primary-dark: #b45309;
    --primary-light: #fcd34d;
    --secondary: #1f2937;
    --accent: #10b981;
    --accent-light: #6ee7b7;
    --light: #f9fafb;
    --border: #e5e7eb;
    --text: #2d3748;
    --text-light: #718096;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-logo-text {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text);
}

.navbar-logo-text:hover {
    color: var(--text);
}

.navbar-logo-icon {
    width: 36px;
    height: 36px;
    color: var(--primary);
    flex-shrink: 0;
}

.navbar-logo-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-hm {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .navbar-logo-icon {
        width: 30px;
        height: 30px;
    }
    .logo-hm {
        font-size: 1.1rem;
    }
    .logo-text {
        font-size: 0.6rem;
    }
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(217, 119, 6, 0.08);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar-phone-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(217, 119, 6, 0.05);
}

.navbar-phone-btn svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--primary) 0%, #b45309 100%);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
    white-space: nowrap;
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
    color: white;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        gap: 0.25rem;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        width: 100%;
        display: block;
    }

    .hamburger-menu {
        display: flex;
    }

    .navbar-actions {
        display: none;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 70px;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%),
                url('../img/hero-desktop.jpg') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    color: white;
    z-index: 2;
    max-width: 500px;
}

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: white;
}

.hero-benefit-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-benefit-icon svg {
    width: 14px;
    height: 14px;
    color: white;
}

.hero-form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-form-card h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.hero-form-card-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: var(--text);
    font-size: 0.9rem;
}

.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 0.85rem;
    width: 18px;
    height: 18px;
    color: var(--text-light);
    pointer-events: none;
    z-index: 1;
    transition: color 0.3s ease;
}

.input-icon-wrap:focus-within .input-icon {
    color: var(--primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text);
}

.form-group input::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
    background: white;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text);
}

.checkbox-label a {
    color: var(--primary);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, #b45309 100%);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.hero-counters {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
}

.hero-counter-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-counter-icon {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-counter-icon svg {
    width: 12px;
    height: 12px;
    color: white;
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        gap: 3rem;
        min-height: auto;
        padding: 3rem 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 70px;
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-form-card {
        padding: 1.5rem;
        max-width: 100%;
    }

    .hero-counters {
        gap: 1rem;
        font-size: 0.8rem;
    }
}

/* ===== STATS/TRUST BAR ===== */
.stats-bar {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 3rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== 3-STEP PROCESS ===== */
.process-section {
    padding: 5rem 2rem;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(180deg, #f8f9fa 0%, #edf2f7 100%);
}

.process-section > .section-title,
.process-section > .process-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--text);
    margin-bottom: 1rem;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
}

.process-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    data-reveal: scroll;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #b45309 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(217, 119, 6, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
}

.process-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.process-connector {
    position: absolute;
    top: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 1;
}

@media (max-width: 768px) {
    .process-section {
        padding: 3rem 1.5rem;
    }

    .process-container {
        gap: 2rem;
    }

    .process-connector {
        display: none;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-overlay-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay-icon svg {
    width: 25px;
    height: 25px;
    color: white;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PARALLAX SECTION ===== */
.parallax-section {
    min-height: 500px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%),
                url('../img/natur-bg.jpg') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 3rem 2rem;
}

.parallax-content {
    max-width: 600px;
    z-index: 2;
}

.parallax-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.parallax-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #b45309 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(217, 119, 6, 0.4);
}

@media (max-width: 768px) {
    .parallax-section {
        min-height: 400px;
        background-attachment: scroll;
    }

    .parallax-content h2 {
        font-size: 1.8rem;
    }
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 30%, white 100%);
    border-radius: 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-left h2 {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.content-left p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 500;
}

.benefits-list-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefits-list-icon svg {
    width: 14px;
    height: 14px;
    color: white;
}

.contact-card {
    background: var(--light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.contact-card-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-card h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contact-card-title {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.contact-btn-phone {
    background: linear-gradient(135deg, var(--primary) 0%, #b45309 100%);
}

.contact-btn-whatsapp {
    background: #25d366;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 2rem;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
}

.faq-section .section-title h2 {
    color: white;
}

.faq-section .section-title p {
    color: rgba(255,255,255,0.7);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

details {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

details:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

details[open] {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.05) 0%, rgba(217, 119, 6, 0.02) 100%);
    border-color: var(--primary);
}

.faq-section details {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
}

.faq-section details:hover {
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

.faq-section details[open] {
    background: rgba(217, 119, 6, 0.1);
    border-color: var(--primary);
}

.faq-section summary {
    color: white;
}

.faq-section details p {
    color: rgba(255,255,255,0.8);
}

.faq-section .faq-container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section .section-title {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text);
    list-style: none;
}

summary::before {
    content: '+';
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

details[open] summary::before {
    content: '−';
    transform: rotate(180deg);
}

details p {
    margin-top: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== AUTOHAUS SECTION ===== */
.autohaus-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

.autohaus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.autohaus-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.autohaus-image img {
    width: 100%;
    height: auto;
    display: block;
}

.autohaus-content h2 {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.autohaus-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 12px;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #fbbf24;
    font-size: 1.3rem;
}

.rating-text {
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 968px) {
    .autohaus-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== CITIES GRID ===== */
.cities-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.city-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.city-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.2);
}

/* ===== FOOTER ===== */
footer {
    background: #1f2937;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    padding: 0.75rem 0;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-sticky-buttons {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-sticky-btn-phone {
    background: linear-gradient(135deg, var(--primary) 0%, #b45309 100%);
}

.mobile-sticky-btn-whatsapp {
    background: #25d366;
}

.mobile-sticky-btn-form {
    background: var(--accent);
}

.mobile-sticky-btn svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
        padding: 0.5rem 0;
    }

    body {
        padding-bottom: 60px;
    }
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.hidden {
    display: none !important;
}

/* ===== SCROLL REVEAL ANIMATION ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WARUM SECTION ===== */
.warum-section {
    padding: 5rem 2rem;
    max-width: 100%;
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
}

.warum-section .section-title,
.warum-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.warum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.warum-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.warum-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: var(--accent);
}

.warum-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.warum-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.warum-card h3 {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.warum-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .warum-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MARKEN SECTION ===== */
.marken-section {
    padding: 5rem 2rem;
    max-width: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.marken-section .section-title h2 {
    color: white;
}

.marken-section .section-title p {
    color: rgba(255,255,255,0.7);
}

.marken-section .section-title,
.marken-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.marken-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.marken-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.marken-item:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

@media (max-width: 768px) {
    .marken-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    .marken-item {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* ===== REVIEWS SECTION (Google-Style) ===== */
.reviews-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    overflow: hidden;
    position: relative;
}

.reviews-header-info {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.reviews-google-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.reviews-rating-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text);
}

.reviews-stars-small {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
}

.reviews-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    padding: 1rem 0;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.review-card {
    min-width: 350px;
    max-width: 350px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.review-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-4px);
    border-color: #dadce0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.15rem;
}

.review-date-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.review-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

.review-text {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-light);
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.reviews-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.reviews-nav-btn:hover svg {
    stroke: white;
}

.reviews-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--text);
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 1rem;
    }

    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.2rem;
    }

    .reviews-google-badge {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.6rem 1rem;
    }

    .reviews-count {
        font-size: 0.75rem;
    }
}
