/*
Theme Name: Entrumpelung
Theme URI: https://fahidjavid.com/
Author: Fahid Javid
Author URI: https://fahidjavid.com
Description: WordPress theme generated from a static Entrumpelung HTML export.
Version: 1.0.0
Text Domain: entrumpelung
*/

/* WordPress-Ready CSS for Entrümpelungsdienst Berlin */
/* This CSS can be easily integrated into a WordPress theme */

/* CSS Variables for easy WordPress customization */
:root {
    --primary-color: #ea580c;
    --primary-hover: #c2410c;
    --secondary-color: #22c55e;
    --secondary-hover: #16a34a;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 0.5rem;
    --container-max-width: 1200px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-whatsapp {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.btn-whatsapp:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-1px);
}

.btn-white {
    background-color: var(--text-white);
    color: var(--primary-color);
    border: 2px solid var(--text-white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--text-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header Styles */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--border-color);
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.logo-icon {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.logo-icon i {
    font-size: 1.5rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.phone-info i {
    color: var(--primary-color);
}

.mobile-phone {
    margin-top: 1rem;
    text-align: center;
}

.mobile-phone .btn {
    width: 100%;
}

/* Navigation */
.navigation {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: var(--bg-white);
}

/* Hero Section */
.hero-section {
    background: white;
    color: var(--primary-color);
    padding: 4rem 0;
    text-align: center;
}

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-dark);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(234, 88, 12, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.service-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.service-item span {
    font-weight: 500;
    color: var(--primary-color);
}

.cta-box {
    background-color: var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box p {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.hero-buttons .btn {
    flex: 1;
    min-width: 180px;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, var(--primary-color), #dc2626);
    color: var(--text-white);
    padding: 3rem 0;
    text-align: center;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.trust-icon {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.trust-text strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.trust-text span {
    color: rgba(255, 255, 255, 0.8);
}

/* Why Section */
.why-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    background-color: var(--primary-color);
    color: var(--text-white);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
}

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

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

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

.services-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.service-info {
    background: linear-gradient(135deg, #fed7aa, #fdba74);
    padding: 2rem;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 0.75rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-icon.p-extra {
    padding-left: 1rem;
    padding-right: 1rem;
}

.service-icon i {
    font-size: 1.5rem;
}

.service-title {
    flex: 1;
}

.service-title h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-title p {
    color: var(--text-light);
    margin-bottom: 0;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.service-cta {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
}

.service-cta p {
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-white);
}

.service-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-details {
    padding: 2rem;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-features h4,
.service-benefits h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.feature-list,
.benefit-list {
    list-style: none;
}

.feature-list li,
.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-list i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-list i {
    color: #fbbf24;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, var(--primary-color), #dc2626);
    color: var(--text-white);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-card {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    background-color: var(--primary-color);
    color: var(--text-white);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon.whatsapp {
    background-color: var(--secondary-color);
}

.contact-icon i {
    font-size: 1.5rem;
}

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

.contact-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-hours,
.contact-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    background-color: var(--primary-color);
    padding: 0.5rem;
    border-radius: var(--border-radius);
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.875rem;
}

.footer-column h5 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-links button {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover{
    color: var(--text-white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
}

.contact-item i {
    color: var(--primary-color);
    width: 1rem;
}

.footer-cta {
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    color: var(--text-dark);
    margin-bottom: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-dark);
}

.contact-form {
    padding: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        justify-content: center;
    }

    .service-card-content {
        grid-template-columns: 1fr;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* @media (max-width: 768px) { */
@media (max-width: 1024px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .trust-indicators {
        /* grid-template-columns: 1fr; */
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        text-align: center;
    }
}

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

    .desktop-only {
        display: flex;
    }
}

/* Utility Classes for WordPress */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* WordPress-specific classes */
.wp-block-group { margin-bottom: 2rem; }
.wp-block-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.wp-block-column { padding: 1rem; }

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/**
* Additional custom styles can be added below as needed by FahidJavid.com
*/
/* Hamburger Menu Button */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: 1rem;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #e54416;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation to Cross */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Add this class to your existing navigation for show/hide */
.navigation.mobile-menu-open {
    display: block !important;
}

/*** Footer sticky Whatsapp Button ***/
.free-consultation.bottom-sticky,
.whatsapp.bottom-sticky {
    position: fixed;
    right: 1rem;
    bottom: 0.3rem;
    transition: 0.4s all;
}

.free-consultation.bottom-sticky {
    bottom: 5rem;
    padding: 21px;
}

.free-consultation.bottom-sticky:hover {
    bottom: 5.3rem;
}

.whatsapp.bottom-sticky:hover {
    bottom: 0.6rem;
}

/* @media (max-width: 768px) { */
@media (max-width: 1024px) {
    .header-content {
        flex-direction: column;
    }

    .logo-section {
        margin-bottom: 1rem;
    }

    .header-buttons {
        display: none;
    }

    .mobile-phone {
        margin-top: -1rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }

    .mobile-phone .btn {
        padding: 0.4em 0.8rem;
    }

    /* Add smooth slide down animation to navigation */
    .navigation {
        display: none; /* Just remove display none to enable animation */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-in-out;
    }

    .navigation.mobile-menu-open {
        max-height: 500px; /* Adjust based on your menu height */
    }

    .nav-links {
        padding-bottom: 1.5rem;
    }
}