/*
* Custom Stylesheet for Entrümpelung Service Website
* Version: 2.0 (Corporate Look)
*
* Main Color (Trust and Cleanliness): #1D3557 (Navy Blue)
* Secondary Color (Call to Action): #F4A261 (Vibrant Orange)
* Background & Neutral Tones: #FFFFFF (White), #F8F9FA (Very Light Gray)
* Text Color: #495057 (Slightly Softer Dark Gray)
*/

:root {
    --primary-color: #1D3557;
    --secondary-color: #F4A261;
    --text-color: #495057;
    --heading-color: #1D3557;
    --light-gray-bg: #F8F9FA;
    --border-color: #dee2e6;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 700;
}

.bg-light-gray {
    background-color: var(--light-gray-bg);
}

/* --- Navbar --- */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: all 0.4s ease-in-out;
}

.navbar.navbar-scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-link {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0.75rem;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 0.5rem;
}
.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover:before, .nav-link.active:before {
    width: 100%;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

/* Custom styles for language switcher */
.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
}
.nav-link.dropdown-toggle .bi-translate {
    margin-right: 0.4rem;
    transition: transform 0.3s ease;
}
.nav-link.dropdown-toggle:hover .bi-translate {
    transform: rotateY(180deg);
}

.navbar-toggler {
    border: none;
    box-shadow: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(29, 53, 87, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Custom & Animated Dropdown Menu */
.dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    padding: 0.5rem 0;
    margin-top: 1rem !important; /* Override Bootstrap margin */
    animation: fadeInDown 0.3s ease-in-out;
    background-color: #ffffff;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.2s ease-in-out;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--light-gray-bg);
    color: var(--secondary-color);
    padding-left: 1.75rem; /* Indent on hover for a nice effect */
    transform: translateX(2px);
}

/* Dropdown open animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Buttons --- */
.btn {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.btn-primary:hover {
    background-color: #162a45;
    border-color: #162a45;
    color: #fff;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}
.btn-secondary:hover {
    background-color: #e59451;
    border-color: #e59451;
    color: #fff;
}


/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(29, 53, 87, 0.6), rgba(29, 53, 87, 0.6)), url('https://images.unsplash.com/photo-1593696140826-c58b021acf8b?q=80&w=1920&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    color: #FFFFFF;
    padding: 140px 0;
    height: 95vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Section --- */
.section-padding {
    padding: 100px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}
.section-title p {
    max-width: 600px;
    margin: 0 auto;
}


/* --- About Section --- */
.about-image-wrapper {
    position: relative;
}
.about-image-wrapper img {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.about-image-decorator {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 10px solid var(--primary-color);
    border-radius: 8px;
    z-index: -1;
}
.lead {
    font-weight: 400;
    font-size: 1.1rem;
}


/* --- Service & Feature Cards --- */
.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.service-card, .feature-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
}

.service-card:hover, .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--secondary-color);
}
.feature-card p {
    font-weight: 400;
    color: #6c757d;
}
.feature-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading-color);
}
.service-card h5 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}


/* --- Quote Form --- */
.quote-form-wrapper {
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}
.quote-info-column {
    background-color: var(--primary-color);
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
}
.quote-info-content {
    padding: 50px;
}
.text-white-75 {
    color: rgba(255,255,255,0.75) !important;
}
.quote-info-column .section-title h2::after {
    background-color: #fff;
}

.quote-icon-box {
    display: flex;
    align-items: flex-start;
    margin-top: 1.5rem;
}
.quote-icon-box .icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    line-height: 1;
}
.quote-icon-box .text {
    line-height: 1.5;
    font-weight: 500;
}

.quote-form {
    background-color: #FFFFFF;
}

.form-floating > .form-control {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}
.form-floating > label {
    padding: 1rem 1.2rem;
    color: #6c757d;
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(244, 162, 97, 0.25);
}

/* --- Footer --- */
.footer {
    background-color: #1D3557;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 20px 0;
}
.footer h5 {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--secondary-color);
}
.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-right: 0.5rem;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}
.footer .social-icons a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}
.footer .footer-bottom {
    border-top: 1px solid #3a506b;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}
.footer .footer-bottom a {
     color: rgba(255, 255, 255, 0.6);
}
.footer .footer-bottom a:hover {
    color: #fff;
}
.footer .list-unstyled li {
    margin-bottom: 0.75rem;
}

/* --- Floating Action Buttons --- */
.fab-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.fab:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    color: #fff;
}

.fab-whatsapp {
    background-color: #25D366;
}
.fab-whatsapp:hover {
    background-color: #1EBE57;
}

.fab-phone {
    background-color: var(--primary-color);
}
.fab-phone:hover {
    background-color: #162a45;
} 