/* ############################################################
   1. GLOBALE SETTINGS & VARIABLEN
   ############################################################ */
:root {
    --primary-color: #007AFF; 
    --accent-dark: #005bb5;
    --secondary-color: #f7f7fa; 
    --text-color: #1c1c1c;
    --light-text: #6e6e73;
    --font-family: 'Inter', sans-serif;
    --border-radius: 20px;
    --required-color: #d9534f;
    --orange-color: #F4A936;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    outline: none; 
    -webkit-tap-highlight-color: transparent; 
}

html { scroll-behavior: smooth; }

body { 
    font-family: var(--font-family); 
    color: var(--text-color); 
    line-height: 1.6; 
    background-color: #fff; 
    overflow-x: hidden; 
}

section { 
    padding: 100px 5%; 
    max-width: 1400px; 
    margin: 0 auto; 
}

.alt-bg { 
    background-color: var(--secondary-color); 
    border-radius: 40px; 
    margin: 20px 5%; 
    width: 90%;
    max-width: 1300px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.separator-line {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 10px;
    margin: 5px 0 20px 0;
}

.separator-line.center-line {
    margin: 5px auto 40px auto;
}
.center-text { text-align: center; }
.underline-title::after { content: none; }


/* ############################################################
   2. HEADER & NAVIGATION
   ############################################################ */
.main-header {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 15px 5%; 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(20px); 
    border-bottom: 1px solid #eaeaef;
}

.logo { display: flex; flex-direction: row; align-items: center; text-decoration: none; gap: 12px; }
.logo-img-wrapper { display: flex; align-items: center; height: 45px; }
.logo img { height: 100%; width: auto; max-height: 45px; object-fit: contain; display: block; }
.logo-text { font-size: 1.4rem; font-weight: 800; color: var(--primary-color); line-height: 1; white-space: nowrap; }
.logo:hover { transform: scale(1.03); color: var(--accent-dark); }

.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary-color); cursor: pointer; }
.main-nav ul { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-link { text-decoration: none; color: var(--light-text); font-weight: 600; transition: 0.3s; position: relative; }
.nav-link:not(.btn-nav):hover { color: var(--text-color); }
.nav-link:not(.btn-nav)::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background: var(--primary-color); transition: 0.3s; }
.nav-link:not(.btn-nav):hover::after { width: 100%; }

.btn-nav { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 25px; border: 2px solid var(--primary-color); border-radius: 50px; color: var(--primary-color); font-weight: 700; text-decoration: none; transition: 0.3s; background: transparent; -webkit-user-select: none; user-select: none; cursor: pointer; }
.btn-nav:hover { background: var(--primary-color); color: #fff !important; transform: scale(1.05); box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3); }

/* ############################################################
   3. HERO SEKTION & BUTTONS
   ############################################################ */
.hero-section { text-align: center; padding: 160px 5% 120px; position: relative; }
.hero-section h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; margin-bottom: 25px; }
.hero-subtext { font-size: 1.3rem; color: var(--light-text); max-width: 800px; margin: 0 auto 40px; }

.hero-usps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}
.usp-item { display: flex; align-items: center; gap: 8px; }
.usp-icon { color: var(--orange-color); font-size: 1.2rem; }
.usp-separator { color: #ccc; font-size: 1.5rem; line-height: 0; }

/* HERO ANIMATION: Sparkle, Lift, Pause */
@keyframes sparkle-lift {
    0%, 100% { transform: scale(1); filter: brightness(100%); }
    20% { transform: scale(1.2); filter: brightness(130%); }
    40% { transform: scale(1); filter: brightness(100%); }
}
.animate-hero-sparkle { animation: sparkle-lift 4s infinite ease-in-out; }
.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 1s; }


.btn-hero { 
    background: var(--primary-color); 
    color: #fff; 
    padding: 14px 35px; 
    font-weight: 600; 
    border-radius: 50px; 
    cursor: pointer; 
    border: none; 
    font-size: 1.05rem; 
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    display: inline-block; 
    text-decoration: none; 
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.25);
    position: relative; 
    overflow: hidden; 
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4); background: var(--accent-dark); }

.btn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}
.btn-hero:hover::after { left: 100%; }


.btn-primary { background: var(--primary-color); color: #fff; padding: 18px 40px; font-weight: 700; border-radius: 50px; cursor: pointer; border: none; width: 100%; font-size: 1.1rem; transition: 0.3s; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 122, 255, 0.3); }

.btn-secondary { background: #f1f1f1; color: var(--text-color); padding: 12px 25px; border-radius: 8px; border: none; font-weight: 600; cursor: pointer; transition: 0.2s; }
.btn-secondary:hover { background: #e0e0e0; }

.scroll-indicator { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%) scale(0.8); transition: 0.5s; }
.scroll-indicator.hidden { opacity: 0; transform: translate(-50%, 20px) scale(0.8); }
.scroll-oval {
    width: 36px;
    height: 60px;
    border: 2px solid #ccc;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}
.scroll-indicator i { font-size: 1.2rem; color: var(--primary-color); animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(10px); } 60% { transform: translateY(5px); } }

/* ############################################################
   4. ANIMATIONEN (REVEAL)
   ############################################################ */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.slide-in-initial { opacity: 1; transform: translateY(0); animation: fadeIn 1.2s; }
.active { opacity: 1; transform: translateY(0) scale(1); } 
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ############################################################
   5. LEISTUNGS-KACHELN
   ############################################################ */
.service-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; max-width: 1350px; margin: 0 auto; }
.service-card { flex: 0 1 calc(18% - 20px); min-width: 240px; padding: 50px 25px; background: #fff; border-radius: var(--border-radius); border: 1px solid #eaeaef; text-align: center; cursor: pointer; transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); box-shadow: 0 4px 10px rgba(0,0,0,0.02); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.service-card:hover { transform: scale(1.05) translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.1); border-color: var(--primary-color); }
.icon-wrapper { width: 120px; height: 120px; background-color: rgba(0, 122, 255, 0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; transition: 0.3s ease; }
.custom-icon { width: 80px; height: 80px; object-fit: contain; transition: 0.3s; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15)); }
.service-card:hover .icon-wrapper { background-color: #fff; box-shadow: 0 0 20px rgba(0, 122, 255, 0.2); transform: scale(1.1); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 700; }
.tap-hint { font-size: 0.8rem; color: var(--primary-color); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.6; }

/* ############################################################
   6. VORTEILE
   ############################################################ */
.advantages-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.advantage-item { flex: 0 1 350px; padding: 50px 40px; text-align: center; background: #fff; border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.03); display: flex; flex-direction: column; align-items: center; }
.advantage-item i { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; }
.counter-container { font-size: 3.5rem; font-weight: 800; color: var(--primary-color); line-height: 1; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; }
.plus { color: var(--accent-dark); margin-left: 2px; }

/* VORTEILE ANIMATIONEN (Triggered) */
@keyframes pulse-shake {
    0%, 100% { transform: scale(1) rotate(0); }
    25% { transform: scale(1.1) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(5deg); }
    75% { transform: scale(1.1) rotate(-5deg); }
}
@keyframes shine-glow {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(0,122,255,0)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 15px rgba(0,122,255,0.6)); transform: scale(1.15); }
}
@keyframes bounce-jump {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.active-animation.icon-speed { animation: pulse-shake 1s ease-in-out; }
.active-animation.icon-shield { animation: shine-glow 1.5s ease-in-out; }
.active-animation.icon-map { animation: bounce-jump 1s ease; }


/* ############################################################
   7. REVIEWS SLIDER (UPDATED COLORS & FIXES)
   ############################################################ */
.reviews-section { background-color: #f9f9fc; overflow: hidden; }
.section-subtitle { text-align: center; color: var(--light-text); margin-bottom: 50px; font-size: 1.1rem; }
.slider-container { position: relative; max-width: 1200px; margin: 0 auto; padding: 20px; }
.slider-track { display: flex; gap: 30px; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); cursor: grab; }
.slider-track:active { cursor: grabbing; }
.review-card-modern { background: #fff; border-radius: 15px; padding: 40px 30px; min-width: 350px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.03); display: flex; flex-direction: column; justify-content: space-between; position: relative; transition: 0.3s; }
.review-card-modern:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.quote-icon { font-size: 2.5rem; color: #cbd5e1; margin-bottom: 20px; }
.review-text { font-size: 1rem; color: var(--light-text); line-height: 1.6; margin-bottom: 30px; flex-grow: 1; }
.review-footer { border-top: 1px solid #f1f1f1; padding-top: 20px; }
.service-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 15px; }

/* FIXED COLORS (Pastel/Elegant) */
.tag-ikea { background-color: #D1C4E9; color: #4527A0; }
.tag-kitchen { background-color: #E0F2F1; color: #00695C; }
.tag-water { background-color: #E3F2FD; color: #1565C0; }
.tag-move { background-color: #F3E5F5; color: #6A1B9A; }
.tag-drywall { background-color: #D7CCC8; color: #4E342E; }
.tag-electro { background-color: #FFF8E1; color: #FF6F00; }

.reviewer-wrapper { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.reviewer-info strong { display: block; color: var(--text-color); font-size: 1.1rem; }
.reviewer-info span { font-size: 0.9rem; color: var(--light-text); }
.reviewer-info i { color: var(--primary-color); margin-right: 5px; }

.review-images { display: flex; gap: 8px; margin-top: 5px; }
.review-thumb {
    width: 50px; height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s;
}
.review-thumb:hover { transform: scale(1.1); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

/* SLIDER ARROW FIXED - Moved Inside Container & High Z-Index */
.slider-arrow { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 50px; height: 50px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.95); 
    border: 1px solid #eee; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    color: var(--primary-color); 
    font-size: 1.2rem; 
    cursor: pointer; 
    z-index: 9999; 
    transition: 0.3s; 
    display: flex; align-items: center; justify-content: center; 
}
.slider-arrow:hover { background: var(--primary-color); color: #fff; }
.slider-arrow.prev { left: 10px; } 
.slider-arrow.next { right: 10px; }

.slider-dots { display: flex; justify-content: center; margin-top: 30px; gap: 8px; }
.dot { width: 10px; height: 10px; background: #cbd5e1; border-radius: 50%; cursor: pointer; transition: 0.3s; }
.dot.active { background: var(--primary-color); width: 30px; border-radius: 10px; }

/* ############################################################
   8. KONTAKT SECTION & FORM STYLES
   ############################################################ */
.contact-split-container { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
.contact-box { flex: 1; min-width: 300px; padding: 40px; border-radius: 20px; background: #fff; box-shadow: 0 10px 40px rgba(0,0,0,0.05); border: 1px solid #eaeaef; }
.simple-contact h3 { margin-bottom: 15px; font-size: 1.5rem; display: flex; align-items: center; gap: 10px; }
.simple-contact p { color: var(--light-text); margin-bottom: 25px; }
.input-group { margin-bottom: 15px; }

.input-group input, .input-group textarea, .form-grid input, .form-group-large input, .form-group-large select, .form-group-large textarea { width: 100%; padding: 12px 15px; border: 1px solid #e1e1e1; border-radius: 10px; font-family: inherit; font-size: 1rem; transition: 0.3s; background: #fff; }
.input-group input:focus, .input-group textarea:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(0,122,255,0.1); }

.quote-cta { background: linear-gradient(135deg, #007AFF 0%, #005bb5 100%); color: #fff; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.quote-cta::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPjwvc3ZnPg=='); opacity: 0.3; }
.icon-circle { width: 80px; height: 80px; background: rgba(255,255,255,0.2); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.quote-cta h3 { font-size: 2rem; margin-bottom: 15px; }
.quote-cta p { opacity: 0.9; margin-bottom: 25px; max-width: 400px; margin-left: auto; margin-right: auto; }
.check-list { list-style: none; text-align: left; max-width: 300px; margin: 0 auto 30px; }
.check-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.check-list li i { background: #fff; color: var(--primary-color); padding: 4px; border-radius: 50%; font-size: 0.7rem; }
.btn-large { padding: 15px 40px; font-size: 1.1rem; background: #fff; color: var(--primary-color); }
.btn-large:hover { background: #f0f8ff; color: var(--accent-dark); transform: scale(1.05); }
.cta-content { position: relative; z-index: 2; }

/* ############################################################
   9. WIZARD MODAL & FORMS
   ############################################################ */
.quote-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); z-index: 2000; opacity: 0; visibility: hidden; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.quote-modal.active { opacity: 1; visibility: visible; }
.quote-modal-content { 
    background: #fff; 
    width: 95%; 
    max-width: 800px; 
    max-height: 90vh; 
    overflow-y: auto; 
    border-radius: 20px; 
    padding: 40px; 
    position: relative; 
    box-shadow: 0 25px 50px rgba(0,0,0,0.2); 
    transform: translateY(20px); 
    transition: 0.3s; 
}
.quote-modal.active .quote-modal-content { transform: translateY(0); }
.close-quote { position: absolute; top: 20px; right: 25px; font-size: 2rem; cursor: pointer; color: #aaa; transition: 0.2s; z-index: 10; }
.close-quote:hover { color: #333; }

.progress-bar-container { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }
.progress-step { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; color: #ccc; }
.progress-step .circle { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 2px solid #e0e0e0; display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 8px; transition: 0.3s; }
.progress-step span { font-size: 0.85rem; font-weight: 600; transition: 0.3s; }
.line { flex: 1; height: 2px; background: #e0e0e0; margin: 0 10px; position: relative; top: -14px; z-index: 1; }
.progress-step.active { color: var(--primary-color); }
.progress-step.active .circle { border-color: var(--primary-color); background: #e6f2ff; color: var(--primary-color); transform: scale(1.1); }
.progress-step.completed { color: #28a745; }
.progress-step.completed .circle { border-color: #28a745; background: #28a745; color: #fff; }

.wizard-step { display: none; animation: fadeIn 0.4s ease; }
.wizard-step.active-step { display: block; }
.wizard-step h3 { font-size: 1.5rem; margin-bottom: 25px; border-bottom: 1px solid #f0f0f0; padding-bottom: 15px; }

.form-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.full-width { width: 100%; }
.half-width { width: calc(50% - 10px); }

.required-star { color: var(--required-color); margin-left: 3px; font-weight: bold; }
.checkbox-wrapper, .checkbox-wrapper-inline { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; margin-top: 25px; padding-top: 15px; border-top: 1px solid #eee; }
.checkbox-wrapper-inline { display: flex; flex-direction: row; align-items: start; }
.checkbox-wrapper input, .checkbox-wrapper-inline input { margin-top: 4px; transform: scale(1.2); flex-shrink: 0; }
.checkbox-wrapper a, .checkbox-wrapper-inline a { color: #007bff; text-decoration: underline; }
.checkbox-wrapper label, .checkbox-wrapper-inline label { display: inline; line-height: 1.4; }

.radio-options { display: flex; gap: 10px; }
.radio-bubble { cursor: pointer; position: relative; }
.radio-bubble input { position: absolute; opacity: 0; cursor: pointer; }
.radio-bubble { padding: 10px 20px; background: #f5f5f7; border-radius: 20px; border: 1px solid transparent; font-size: 0.9rem; font-weight: 500; transition: 0.2s; display: inline-block; }
.radio-bubble:hover { background: #e9e9eb; }
.radio-bubble:has(input:checked) { background: var(--primary-color); color: #fff; box-shadow: 0 4px 10px rgba(0,122,255,0.3); }

.form-group-large { margin-bottom: 25px; }
.wizard-nav { display: flex; justify-content: space-between; margin-top: 30px; border-top: 1px solid #f0f0f0; padding-top: 20px; gap: 20px; }
.wizard-nav.right { justify-content: flex-end; }

.custom-file-upload { position: relative; border: 2px dashed #ccc; border-radius: 10px; padding: 30px; text-align: center; background: #fafafa; transition: 0.3s; cursor: pointer; }
.custom-file-upload:hover { border-color: var(--primary-color); background: #f0f8ff; }
.custom-file-upload input[type="file"] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-upload-content { pointer-events: none; display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--light-text); }
.file-upload-content i { font-size: 2rem; color: var(--primary-color); }
.file-upload-content small { font-weight: 600; color: #333; }

.autocomplete-suggestions {
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 1500;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    list-style: none;
    margin-top: 0;
    padding-left: 0;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: none; 
}
.autocomplete-suggestions li { padding: 12px 15px; cursor: pointer; border-bottom: 1px solid #d4d4d4; font-size: 0.95rem; }
.autocomplete-suggestions li:hover { background-color: #f0f8ff; }


/* ############################################################
   10. MODAL, CTA & FLOATING MENU
   ############################################################ */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); }
.modal-content { background: #fff; margin: 8% auto; padding: 60px; border-radius: 30px; width: 90%; max-width: 650px; position: relative; animation: slideIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.close-modal { position: absolute; right: 30px; top: 25px; font-size: 2.5rem; cursor: pointer; color: var(--light-text); }

.floating-widget-container { position: fixed; bottom: 30px; right: 30px; z-index: 1500; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; pointer-events: none; }

.main-cta-button.orange-bubble {
    width: 65px; height: 65px;
    background-color: #F4A936; 
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s ease;
    position: relative;
    pointer-events: auto;
}
.main-cta-button.orange-bubble:hover { transform: scale(1.1); }

.notification-dot {
    position: absolute; top: 0; right: 0; width: 16px; height: 16px; background-color: #d9534f; border: 2px solid #fff; border-radius: 50%; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 83, 79, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(217, 83, 79, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 83, 79, 0); } }

.floating-menu {
    background: #fff;
    width: 320px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    pointer-events: auto;
}
.floating-menu.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.floating-menu-header { background: #F4A936; color: white; padding: 15px 20px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
.close-floating { cursor: pointer; font-size: 1.5rem; line-height: 1; }

.menu-view, .faq-view { padding: 10px; }

.menu-item { display: flex; align-items: center; padding: 12px 15px; margin-bottom: 8px; border-radius: 10px; cursor: pointer; text-decoration: none; color: #333; background: #fff; transition: 0.2s; border: 1px solid transparent; }
.menu-item:hover { background-color: #f9f9f9; border-color: #eee; }
.menu-item span { font-weight: 500; font-size: 0.95rem; margin-left: 15px; flex-grow: 1; }

.icon-circle-small { width: 40px; height: 40px; min-width: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.call-bg { background: #34C759; }
.mail-bg { background: #007AFF; }
.wa-bg { background: #25D366; }
.faq-bg { background: #5856D6; }
.arrow-right { color: #ccc; font-size: 0.8rem; }

.faq-header-nav { padding: 10px 15px; color: #F4A936; font-weight: 600; cursor: pointer; border-bottom: 1px solid #eee; margin-bottom: 10px; }
.faq-header-nav i { margin-right: 5px; }
.faq-list { max-height: 350px; overflow-y: auto; padding: 0 10px 10px 10px; }
.faq-item { border-bottom: 1px solid #f5f5f5; margin-bottom: 5px; }
.faq-question { padding: 12px 5px; font-size: 0.9rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question i { font-size: 0.8rem; color: #ccc; transition: 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: #F4A936; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; font-size: 0.85rem; color: #666; line-height: 1.5; padding: 0 5px; }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 15px; }

/* NEU: GALLERY STYLES (SPLIT LAYOUT - FIXED ZOOM) */
.gallery-modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 3000; align-items: center; justify-content: center; }
.close-gallery { position: absolute; top: 20px; right: 30px; font-size: 2.5rem; color: #fff; cursor: pointer; z-index: 3002; }

/* Split Container */
.gallery-container-split {
    display: flex; width: 90%; height: 85vh; background: #fff; border-radius: 10px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Left Side (Image) */
.gallery-main-stage {
    flex: 3; position: relative; background: #000; display: flex; align-items: center; justify-content: center;
    overflow: hidden; /* IMPORTANT */
}
/* ZOOM FIX FOR ALL GALLERY IMAGES */
.gallery-full-img { 
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain; /* ESSENTIAL FIX */
    display: block;
}

.gallery-arrow-stage {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1); border: none; color: white;
    width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
    font-size: 1.2rem; transition: 0.3s; z-index: 3005; /* IMPORTANT Z-INDEX */
}
.gallery-arrow-stage:hover { background: rgba(255,255,255,0.3); }
.gallery-arrow-stage.prev { left: 20px; }
.gallery-arrow-stage.next { right: 20px; }

.gallery-counter-overlay {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,0.5); padding: 5px 15px; border-radius: 20px; color: white; font-size: 0.9rem;
}

/* Right Side (Thumbnails) */
.gallery-sidebar {
    flex: 1; min-width: 300px; max-width: 400px;
    background: #fff; padding: 20px; overflow-y: auto; border-left: 1px solid #eee;
    display: flex; flex-direction: column;
}
.gallery-sidebar h3 { color: #333; margin-bottom: 20px; font-size: 1.2rem; border-bottom: 1px solid #eee; padding-bottom: 10px; }

.gallery-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.gal-thumb {
    width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 5px; cursor: pointer;
    opacity: 0.8; transition: 0.2s; border: 3px solid transparent;
}
.gal-thumb:hover { opacity: 1; }
.gal-thumb.active { opacity: 1; border-color: var(--orange-color); } /* ORANGE BORDER */

/* Responsive Gallery */
@media (max-width: 900px) {
    .gallery-container-split { flex-direction: column; height: 90vh; }
    .gallery-main-stage { flex: 2; }
    .gallery-sidebar { flex: 1; border-left: none; border-top: 1px solid #eee; padding: 10px; max-width: none; }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); } 
    .gallery-sidebar h3 { display: none; }
}

footer { padding: 50px 5%; text-align: center; font-size: 1rem; color: var(--light-text); border-top: 1px solid #eaeaef; }
.footer-links a { color: var(--light-text); margin: 0 15px; text-decoration: none; font-weight: 500; }
.footer-links a:hover { color: var(--primary-color); }

@media (max-width: 1100px) { .service-card { flex: 0 1 calc(30% - 20px); } }
@media (max-width: 1000px) {
    .main-nav { position: fixed; top: 0; right: -100%; width: 80%; height: 100vh; background: #fff; transition: 0.5s; box-shadow: -10px 0 30px rgba(0,0,0,0.05); }
    .main-nav.is-open { right: 0; }
    .main-nav ul { flex-direction: column; padding-top: 120px; }
    .menu-toggle { display: block; }
    .scroll-indicator { display: none; }
    .alt-bg { width: 95%; margin: 20px auto; border-radius: 25px; }
}
@media (max-width: 768px) {
    section { padding: 60px 5%; }
    .section-title { font-size: 2rem; }
    .service-card { flex: 0 1 calc(45% - 15px); min-width: 160px; padding: 30px 15px; }
    .review-card-modern { min-width: 85vw; }
    .slider-arrow { display: none; }
    .half-width { width: 100%; }
    .contact-split-container { flex-direction: column; }
    .quote-modal-content { padding: 20px; width: 100%; height: 100%; border-radius: 0; margin: 0; }
    .progress-bar-container { margin-bottom: 20px; }
    .progress-step span { font-size: 0.7rem; }
    .floating-widget-container { bottom: 20px; right: 20px; }
    .floating-menu { width: 280px; right: 0; }
    .gallery-nav { width: 40px; height: 40px; font-size: 1rem; }
    .gallery-nav.prev { left: 10px; }
    .gallery-nav.next { right: 10px; }
}
@media (max-width: 480px) {
    .service-card { flex: 0 1 100%; }
    .hero-section h1 { font-size: 2rem; }
}