/* =====================================================
RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #fff;
}

a {
    text-decoration: none;
}


/* =====================================================
TOP BAR
===================================================== */

.top-bar {
    width: 100%;
    height: 50px;

    background: #ffffff;
    color: #063f8c;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 4.5%;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.top-left a,
.top-left span {
    color: #063f8c;

    font-size: 20px;
    font-weight: 500;

    display: flex;
    align-items: center;

    gap: 11px;

    white-space: nowrap;
}

.top-left i {
    color: #063f8c;
    font-size: 22px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-right a {
    color: #063f8c;

    font-size: 27px;

    transition: opacity 0.2s ease;
}

.top-right a:hover {
    opacity: 0.7;
}


/* =====================================================
NAVBAR
===================================================== */

.navbar {
    width: 100%;
    height: 125px;

    background: #154FB3;

    position: relative;
    z-index: 1000;

    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.10);
}

.nav-container {
    width: 91%;
    max-width: 1400px;

    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
LOGO
===================================================== */

.logo {
    height: 100%;

    display: flex;
    align-items: center;

    flex-shrink: 0;

    overflow: hidden;
}

.logo img {
    width: 250px;
    height: auto;
    max-height: 115px;

    display: block;
}


/* =====================================================
NAV MENU
===================================================== */

.nav-menu {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 50px;
}

.nav-menu a {
    height: 100%;

    display: flex;
    align-items: center;

    position: relative;

    color: #ffffff;

    font-size: 21px;

    font-weight: 700;

    letter-spacing: 0.4px;

    transition: opacity 0.2s ease;
}

.nav-menu a:hover {
    color: #ffffff;
    opacity: 0.85;
}


/* =====================================================
ACTIVE LINE
===================================================== */

.nav-menu a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 18px;

    width: 0;
    height: 4px;

    background: #ffffff;

    transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}


/* =====================================================
CALL BUTTON
===================================================== */

.call-button {
    height: 56px;

    padding: 0 31px;

    border-radius: 6px;

    background: #ffffff;

    color: #063f8c;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    font-size: 18px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.call-button i {
    color: #063f8c;

    font-size: 20px;
}

.call-button:hover {
    background: #f1f5fa;

    color: #063f8c;

    transform: translateY(-1px);
}


/* =====================================================
HERO
===================================================== */

.hero {
    width: 100%;

    height: calc(100vh - 175px);

    min-height: 550px;

    position: relative;

    background-image: url("../images/hero.png");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    display: flex;

    align-items: center;

    overflow: hidden;
}


/* =====================================================
HERO OVERLAY
===================================================== */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.58) 0%,
            rgba(0, 0, 0, 0.32) 45%,
            rgba(0, 0, 0, 0.08) 100%
        );
}


/* =====================================================
HERO CONTENT
===================================================== */

.hero-content {
    position: relative;

    z-index: 2;

    width: 91%;

    max-width: 1400px;

    margin: 0 auto;

    color: #ffffff;

    animation:
        heroTextSlide
        2.5s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}


/* =====================================================
HERO ANIMATION
===================================================== */

@keyframes heroTextSlide {

    from {
        opacity: 0;
        transform: translateX(-120px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =====================================================
HERO TITLE
===================================================== */

.hero-content h1 {
    font-size: clamp(42px, 4.5vw, 68px);

    line-height: 1.08;

    font-weight: 700;

    margin-bottom: 22px;

    max-width: 850px;
}

.hero-content p {
    font-size: clamp(20px, 2vw, 28px);

    font-weight: 400;

    letter-spacing: 0.3px;
}


/* =====================================================
   ÜBER UNS
===================================================== */

.about-section {
    width: 100%;
    padding: 100px 20px;
    background: #ffffff;
    overflow: hidden;
}

.about-container {
    width: 91%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 70px;
}


/* =====================================================
   ÜBER UNS IMAGE
===================================================== */

.about-image {
    opacity: 0;
    transform: translateX(-100px);

    transition:
        opacity 1.2s ease,
        transform 1.2s ease;
}

.about-image img {
    width: 100%;
    height: 520px;

    object-fit: cover;
    display: block;

    border-radius: 8px;
}


/* =====================================================
   ÜBER UNS CONTENT
===================================================== */

.about-content {
    opacity: 0;
    transform: translateX(100px);

    transition:
        opacity 1.2s ease,
        transform 1.2s ease;
}

.about-content h2 {
    margin: 0 0 8px;
    color: #154FB3;
    font-size: 30px;
    font-weight: 700;
}

.about-content h3 {
    margin: 0 0 28px;
    color: #154FB3;
    font-size: 25px;
    font-weight: 700;
}

.about-text p {
    margin: 0 0 24px;
    color: #333333;
    font-size: 21px;
    line-height: 1.7;
    font-weight: 400;
}

.about-text h4 {
    margin: 8px 0 18px;
    color: #222222;
    font-size: 23px;
    line-height: 1.4;
    font-weight: 700;
}

.about-text ul {
    margin: 0 0 10px;
    padding-left: 25px;
}

.about-text li {
    margin-bottom: 8px;
    color: #333333;
    font-size: 20px;
    line-height: 1.6;
}

.about-text strong {
    color: #154FB3;
    font-weight: 700;
}


/* =====================================================
   ÜBER UNS ANIMATION
===================================================== */

.about-container.animate .about-image {
    animation:
        aboutImageIn
        2.2s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

.about-container.animate .about-content {
    animation:
        aboutContentIn
        2.2s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

@keyframes aboutImageIn {

    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes aboutContentIn {

    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =====================================================
   WHATSAPP CHAT
===================================================== */

.whatsapp-chat {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 9999;

    width: 220px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    background: #25D366;

    color: #ffffff;

    border-radius: 50px;

    font-size: 19px;

    font-weight: 700;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.whatsapp-chat i {
    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 32px;

    line-height: 1;

    color: #ffffff;
}

.whatsapp-chat span {
    display: block;

    color: #ffffff;
}

.whatsapp-chat:hover {
    color: #ffffff;

    transform: translateY(-4px);

    box-shadow:
        0 9px 25px rgba(0, 0, 0, 0.30);
}


/* =====================================================
TEMPORARY SECTIONS
===================================================== */

.placeholder-section {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 20px;

    background: #ffffff;
}

.placeholder-section h2 {
    font-size: 40px;

    color: #154FB3;
}


/* =====================================================
MOBILE BUTTON
===================================================== */

.menu-toggle {
    display: none;

    width: 48px;
    height: 48px;

    background: transparent;

    border: none;

    color: #ffffff;

    font-size: 29px;

    cursor: pointer;
}


/* =====================================================
TABLET
===================================================== */

@media (max-width: 1150px) {

    .nav-menu {
        gap: 28px;
    }

    .nav-menu a {
        font-size: 18px;
    }

    .logo img {
        width: 190px;
        max-height: 100px;
    }

    .call-button {
        height: 53px;

        padding: 0 24px;

        font-size: 16px;
    }

    .call-button i {
        font-size: 18px;
    }

    /* ABOUT */

    .about-section {
        padding: 80px 20px;
    }

    .about-container {
        width: 90%;
        grid-template-columns: 45% 55%;
        gap: 40px;
    }

    .about-image img {
        height: 450px;
    }

    .about-content h2 {
        font-size: 29px;
    }

    .about-content h3 {
        font-size: 24px;
        margin-bottom: 22px;
    }

    .about-text p {
        font-size: 19px;
        line-height: 1.65;
    }

    .about-text h4 {
        font-size: 21px;
    }

    .about-text li {
        font-size: 18px;
    }

    /* WHATSAPP */

    .whatsapp-chat {
        width: 210px;
        height: 62px;

        right: 22px;
        bottom: 22px;

        font-size: 18px;
    }

    .whatsapp-chat i {
        font-size: 30px;
    }
}


/* =====================================================
MOBILE
===================================================== */

@media (max-width: 850px) {

    /* TOP BAR */

    .top-bar {
        height: 45px;

        padding: 0 20px;
    }

    .top-left {
        gap: 13px;
    }

    .top-left a,
    .top-left span {
        font-size: 14px;
    }

    .top-left i {
        font-size: 16px;
    }

    .top-left span {
        display: none;
    }

    .top-right {
        gap: 15px;
    }

    .top-right a {
        font-size: 21px;
    }


    /* =================================================
       NAVBAR
    ================================================= */

    .navbar {
        height: 90px;

        background: #154FB3;
    }

    .nav-container {
        width: 90%;
    }


    /* LOGO */

    .logo {
        height: 100%;
    }

    .logo img {
        width: 135px;
        max-height: 80px;
    }


    /* HIDE DESKTOP MENU */

    .nav-menu {
        display: none;
    }


    /* HIDE CALL BUTTON */

    .call-button {
        display: none;
    }


    /* MOBILE BUTTON */

    .menu-toggle {
        display: block;

        width: 48px;
        height: 48px;

        font-size: 29px;
    }


    /* =================================================
       MOBILE NAV
    ================================================= */

    .nav-menu.mobile-open {

        position: absolute;

        top: 90px;
        left: 0;

        width: 100%;

        height: auto;

        background: #154FB3;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        box-shadow:
            0 8px 15px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.mobile-open a {

        width: 100%;

        height: 60px;

        padding: 0 25px;

        display: flex;

        align-items: center;

        color: #ffffff;

        font-size: 19px;

        font-weight: 700;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-menu.mobile-open a::after {
        display: none;
    }


    /* =================================================
       HERO
    ================================================= */

    .hero {

        height: calc(100vh - 135px);

        min-height: 500px;

        background-position: center center;
    }

    .hero-content {
        width: 90%;
    }

    .hero-content h1 {
        font-size: 42px;

        line-height: 1.1;
    }

    .hero-content p {
        font-size: 20px;
    }


    /* =================================================
       ÜBER UNS
    ================================================= */

    .about-section {
        width: 100%;
        padding: 80px 20px;
    }

    .about-container {
        width: 90%;
        max-width: none;
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .about-image {
        transform: translateX(-70px);
    }

    .about-content {
        transform: translateX(70px);
    }

    .about-image img {
        height: 350px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content h3 {
        font-size: 25px;
        margin-bottom: 22px;
    }

    .about-text p {
        font-size: 18px;
        line-height: 1.65;
    }


    /* =================================================
       WHATSAPP
    ================================================= */

    .whatsapp-chat {
        width: 195px;
        height: 58px;

        right: 18px;
        bottom: 18px;

        font-size: 16px;

        gap: 11px;
    }

    .whatsapp-chat i {
        font-size: 27px;
    }
}


/* =====================================================
SMALL MOBILE
===================================================== */

@media (max-width: 500px) {

    .top-left a {
        font-size: 12px;
    }

    .top-left i {
        font-size: 15px;
    }

    .top-right a {
        font-size: 19px;
    }


    /* LOGO */

    .logo img {
        width: 125px;
        max-height: 75px;
    }


    /* HERO */

    .hero-content h1 {
        font-size: 35px;
    }

    .hero-content p {
        font-size: 18px;
    }


    /* ABOUT */

    .about-section {
        padding: 60px 15px;
    }

    .about-container {
        width: 95%;
        gap: 30px;
    }

    .about-image img {
        height: 300px;
    }

    .about-content h2 {
        font-size: 25px;
    }

    .about-content h3 {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 17px;
        line-height: 1.7;
    }


    /* WHATSAPP */

    .whatsapp-chat {
        width: 180px;
        height: 54px;

        right: 15px;
        bottom: 15px;

        font-size: 15px;

        gap: 10px;
    }

    .whatsapp-chat i {
        font-size: 25px;
    }
}


/* =====================================================
   KOSTENLOSE BERATUNG & VOR-ORT-TERMIN
===================================================== */

.consultation-section {
    width: 100%;
    padding: 120px 20px;

    position: relative;
    overflow: hidden;

    /* خلفية نظيفة جدًا */
    background: #d6e8ff;

    /*
       تموجات ماء ناعمة جدًا:
       خطوط منحنية فقط، بدون فقاعات أو دوائر.
    */
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 320' preserveAspectRatio='none'%3E%3Cpath d='M0 190 C180 110 360 110 540 185 S900 260 1080 180 S1420 100 1600 175' fill='none' stroke='%23154FB3' stroke-opacity='.075' stroke-width='4'/%3E%3Cpath d='M0 220 C200 145 370 145 560 215 S910 285 1100 205 S1420 135 1600 205' fill='none' stroke='%23154FB3' stroke-opacity='.050' stroke-width='3'/%3E%3Cpath d='M0 255 C190 185 380 180 570 245 S930 310 1120 240 S1420 180 1600 235' fill='none' stroke='%23154FB3' stroke-opacity='.040' stroke-width='2'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-size: 100% 320px;
    background-position: center bottom;
}


/* =====================================================
   SOFT TOP WAVE
===================================================== */

.consultation-section::before {
    content: "";

    position: absolute;

    left: -5%;
    top: -115px;

    width: 110%;
    height: 190px;

    background: transparent;

    border-bottom:
        3px solid rgba(21, 79, 179, 0.055);

    border-radius: 0 0 50% 50%;

    transform: rotate(-1deg);

    pointer-events: none;
}


/* =====================================================
   SOFT LIGHT WAVE
===================================================== */

.consultation-section::after {
    content: "";

    position: absolute;

    left: -5%;
    bottom: -135px;

    width: 110%;
    height: 210px;

    background: transparent;

    border-top:
        3px solid rgba(21, 79, 179, 0.055);

    border-radius: 50% 50% 0 0;

    transform: rotate(1deg);

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.consultation-container {
    width: 91%;
    max-width: 1200px;

    margin: 0 auto;

    text-align: center;

    position: relative;
    z-index: 2;
}


/* =====================================================
   TITLE
===================================================== */

.consultation-container h2 {
    margin: 0 0 40px 0;

    color: #154FB3;

    font-size: clamp(46px, 5.2vw, 70px);

    line-height: 1.12;

    font-weight: 700;

    opacity: 0;

    transform: translateY(-100px);
}


/* =====================================================
   MAIN TEXT
===================================================== */

.consultation-main-text {
    margin: 0 auto 35px auto;

    color: #222222;

    font-size: clamp(26px, 2.8vw, 36px);

    line-height: 1.6;

    font-weight: 600;

    opacity: 0;

    transform: translateY(70px);
}


/* =====================================================
   SUBTEXT
===================================================== */

.consultation-subtext {
    margin: 0 0 40px 0;

    color: #333333;

    font-size: clamp(21px, 2.1vw, 28px);

    line-height: 1.5;

    font-weight: 500;

    opacity: 0;

    transform: translateY(60px);
}


/* =====================================================
   PHONE BUTTON
===================================================== */

.consultation-phone {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 16px;

    min-width: 330px;

    padding: 20px 38px;

    border-radius: 8px;

    background: #154FB3;

    color: #ffffff;

    font-size: 23px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 6px 18px rgba(21, 79, 179, 0.20);

    opacity: 0;

    transform: translateY(60px);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.consultation-phone i {
    font-size: 26px;
}

.consultation-phone:hover {
    background: #123f91;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(21, 79, 179, 0.25);
}


/* =====================================================
   ANIMATION
===================================================== */

.consultation-container.animate h2 {
    animation:
        consultationTitleDown
        2.3s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

.consultation-container.animate .consultation-main-text {
    animation:
        consultationTextUp
        2.4s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

.consultation-container.animate .consultation-subtext {
    animation:
        consultationTextUp
        2.5s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

.consultation-container.animate .consultation-phone {
    animation:
        consultationTextUp
        2.6s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}


/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes consultationTitleDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes consultationTextUp {
    from {
        opacity: 0;
        transform: translateY(70px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .consultation-section {
        padding: 90px 20px;

        background-size: auto 250px;
        background-position: center bottom;
    }

    .consultation-container {
        width: 90%;
    }

    .consultation-container h2 {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 32px;
    }

    .consultation-main-text {
        font-size: 23px;
        line-height: 1.65;
    }

    .consultation-subtext {
        font-size: 20px;
    }

    .consultation-phone {
        min-width: 280px;
        padding: 18px 28px;
        font-size: 20px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 500px) {

    .consultation-section {
        padding: 75px 15px;

        background-size: auto 210px;
    }

    .consultation-container h2 {
        font-size: 34px;
    }

    .consultation-main-text {
        font-size: 22px;
    }

    .consultation-subtext {
        font-size: 20px;
    }

    .consultation-phone {
        width: 100%;
        max-width: 300px;
        font-size: 18px;
    }
}


/* =====================================================
   NAVBAR REAPPEARS AFTER PASSING IT
===================================================== */

/*
   يظهر البار الأزرق مرة ثانية فقط بعد تجاوز
   البار الأزرق الأصلي بالكامل.
*/

.navbar-scroll-fixed {
    position: fixed !important;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    animation:
        navbarSlideDown
        0.45s
        ease-out
        forwards;
}

@keyframes navbarSlideDown {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}


/* يحافظ على مكان الـNavbar الأصلي */

.navbar-spacer {
    width: 100%;
    display: none;
}

@media (max-width: 850px) {

    .navbar-scroll-fixed {
        width: 100%;
    }

}


/* =====================================================
   ÜBER UNS - HEADINGS
===================================================== */

.about-content h2 {
    font-size: 35px !important;
    color: #154FB3;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-content h3 {
    font-size: 44px !important;
    color: #154FB3;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 28px;
}


/* =====================================================
   MOBILE - ÜBER UNS HEADINGS
===================================================== */

@media (max-width: 700px) {

    .about-content h2 {
        font-size: 25px !important;
    }

    .about-content h3 {
        font-size: 26px !important;
    }

}


/* =====================================================
   PFLASTERREINIGUNG
===================================================== */

.paving-section {
    width: 100%;
    padding: 110px 0;
    background: #ffffff;
    overflow: hidden;
}

.paving-container {
    width: 91%;
    max-width: 1400px;
    margin: 0 auto;
}


/* ================= HEADING ================= */

.paving-heading { 
    text-align: center; 
    margin-bottom: 55px; 
} 
 
.paving-heading h2 {
    margin: 0 0 12px;
    color: #154FB3;
    font-size: 48px;
    font-weight: 700;
}
 
.paving-heading p { 
    margin: 0; 
 
    color: #333; 
 
    font-size: 22px; 
    line-height: 1.6; 
}

.paving-heading {
    text-align: center;
    margin-bottom: 55px;

    opacity: 0;
    transform: translateY(50px);

    transition:
        opacity 1s ease,
        transform 1s ease;
}

.paving-heading.show {
    opacity: 1;
    transform: translateY(0);
}


/* ================= PFLASTERREINIGUNG TEXT ================= */

.paving-slogan {
    margin: 10px auto 30px;

    color: #000000;

    font-size: 48px;
    font-weight: 700;

    line-height: 1.2;

    text-align: center;

    white-space: nowrap;

    width: 100%;
}


/* ================= DESCRIPTION ================= */

.paving-description {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto 30px;

    text-align: center;
}

.paving-description p {
    margin: 0 0 18px;

    color: #333;

    font-size: 20px;
    line-height: 1.6;

    text-align: justify;
}

/* ================= FACTS ================= */

.paving-facts {
    width: 100%;
    max-width: 1200px;

    margin: 35px auto 50px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.paving-facts {
    opacity: 0;
    transform: translateY(60px);

    transition:
        opacity 1s ease,
        transform 1s ease;
}

.paving-facts.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= FACTS IMAGE ================= */

.facts-image {
    width: 100%;
}

.facts-image img {
    width: 100%;
    max-width: 560px;

    height: auto;

    display: block;

    border-radius: 10px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}


/* ================= FACTS CONTENT ================= */

.facts-content {
    width: 100%;
}

.facts-content h3 {
    margin: 0 0 25px;

    color: #154FB3;

    font-size: 34px;
    font-weight: 700;
    text-align: left;
}


/* ================= FACTS LIST ================= */

.facts-content ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.facts-content li {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 17px;

    color: #333;

    font-size: 18px;
    line-height: 1.5;
}


/* ================= CHECK CIRCLE ================= */

.fact-check {
    flex: 0 0 25px;

    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #154FB3;

    border-radius: 50%;

    color: #154FB3;

    font-size: 15px;
    font-weight: 700;

    box-sizing: border-box;
}

/* =====================================================
   PFLASTERREINIGUNG ACCORDION
===================================================== */

.paving-accordion {
    width: 100%;
    max-width: 1100px;

    margin: 50px auto 120px;
}

/* ================= ACCORDION ITEM ================= */

.accordion-item {
    margin-bottom: 15px;

    border: 1px solid #e1e1e1;
    border-radius: 8px;

    background: #ffffff;

    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}


/* ================= ACCORDION BUTTON ================= */

.accordion-button {
    width: 100%;

    padding: 20px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border: none;

    background: #ffffff;

    color: #154FB3;

    font-size: 21px;
    font-weight: 700;

    text-align: left;

    cursor: pointer;

    transition: background 0.3s ease;
}


.accordion-button:hover {
    background: #f5f8fd;
}


/* ================= PLUS / MINUS ================= */

.accordion-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #154FB3;

    font-size: 27px;
    font-weight: 400;

    line-height: 1;

    flex-shrink: 0;
}


/* ================= ACCORDION CONTENT ================= */

.accordion-content {
    max-height: 0;

    overflow: hidden;

    padding: 0 25px;

    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
}


.accordion-content p {
    margin: 0;

    color: #333;

    font-size: 18px;
    line-height: 1.7;

    text-align: justify;
}

/* ================= OPEN ================= */

.accordion-item.active .accordion-content {
    max-height: 500px;

    padding: 0 25px 22px;
}

/* ================= GALLERY TITLE ================= */

.paving-heading .gallery-title {
    margin: 90px 0 0;

    color: #154FB3;

    font-size: 42px;
    line-height: 1.3;

    font-weight: 700;

    text-align: center;
}

/* ================= GALLERY ================= */

.paving-gallery {
    display: grid;

    grid-template-columns: repeat(2, 520px);

    justify-content: center;

    gap: 25px;
}


/* ================= IMAGE CARD ================= */

.paving-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;

    border-radius: 10px;

    overflow: hidden;

    background: #f5f7fa;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);

    opacity: 0;

    transform: translateY(70px);

    transition:
        opacity 1s ease,
        transform 1s ease;
}


/* ================= ANIMATION ================= */

.paving-card.show {
    opacity: 1;

    transform: translateY(0);
}


/* ================= IMAGE ================= */

.paving-card img {
    width: 100%;

    height: auto;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.paving-card:hover img {
    transform: scale(1.02);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .paving-section {
        padding: 80px 0;
    }

    .paving-gallery {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .paving-card {
        max-width: 520px;
    }

    .paving-heading h2 {
        font-size: 42px;
    }

    .paving-heading p {
        font-size: 20px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .paving-section {
        padding: 65px 0;
    }

    .paving-container {
        width: 90%;
    }

    .paving-heading {
        margin-bottom: 35px;
    }

    .paving-heading h2 {
        font-size: 34px;
    }

    .paving-heading p {
        font-size: 18px;
        line-height: 1.5;
    }

    .paving-gallery {
        gap: 25px;
    }

    .paving-facts {
    grid-template-columns: 1fr;
    gap: 35px;
}

.facts-image img {
    margin: 0 auto;
}

.facts-content h3 {
    font-size: 30px;
}

}


/* =====================================================
   KONTAKT
===================================================== */

.contact-section {
    width: 100%;
    padding: 110px 0;

    background: #ffffff;

    overflow: hidden;
}

.contact-container {
    width: 91%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 45% 55%;

    align-items: center;

    gap: 80px;
}


/* ================= MAP ================= */

.contact-map {
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transform: translateX(-90px);

    transition:
        opacity 1.2s ease,
        transform 1.2s ease;
}

.contact-map.show {
    opacity: 1;
    transform: translateX(0);
}

.contact-map img {
    width: 100%;
    max-width: 560px;

    height: auto;

    display: block;
}


/* ================= CONTENT ================= */

.contact-content {
    opacity: 0;
    transform: translateX(90px);

    transition:
        opacity 1.2s ease,
        transform 1.2s ease;
}

.contact-content.show {
    opacity: 1;
    transform: translateX(0);
}


/* ================= INTRO ================= */

.contact-intro {
    margin: 0 0 10px;

    color: #154FB3;

    font-size: 24px;
    font-weight: 700;
}


/* ================= TITLE ================= */

.contact-content h2 {
    margin: 0 0 35px;

    color: #222;

    font-size: 44px;
    font-weight: 700;
}


/* ================= FORM ================= */

.contact-form {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 30px 40px;
}

.form-group {
    width: 100%;
    margin: 0;
}

.form-group-full {
    grid-column: 1 / -1;
}


/* ================= INPUT BOX ================= */

.input-box {
    position: relative;

    width: 100%;
    height: 68px;

    border: 1px solid #dddddd;

    background: #ffffff;

    display: flex;
    align-items: center;
}

.input-box input,
.input-box textarea {
    width: 100%;
    height: 100%;

    padding: 0 58px 0 26px;

    border: none;
    outline: none;

    background: transparent;

    color: #222222;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;
}

.input-box input::placeholder,
.input-box textarea::placeholder {
    color: #666666;
    opacity: 1;
}


/* ================= ICON ================= */

.input-box > i {
    position: absolute;
    right: 26px;
    top: 50%;

    transform: translateY(-50%);

    color: #398d5c;

    font-size: 21px;

    pointer-events: none;
}


/* ================= FILE INPUT ================= */

.input-box input[type="file"] {
    display: none;
}

.input-box label {
    width: 100%;
    height: 100%;

    padding: 0 58px 0 26px;

    display: flex;
    align-items: center;

    color: #666666;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;

    cursor: pointer;
}


/* ================= TEXTAREA ================= */

.textarea-box {
    height: 155px;

    align-items: flex-start;
}

.input-box textarea {
    padding-top: 22px;
    padding-bottom: 20px;

    resize: vertical;
}


/* ================= BUTTON ================= */

.contact-submit {
    grid-column: 1 / -1;

    justify-self: start;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 0;

    padding: 16px 30px;

    border: none;
    border-radius: 6px;

    background: #154FB3;

    color: #ffffff;

    font-size: 19px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.contact-submit:hover {
    background: #103f91;

    transform: translateY(-2px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .contact-section {
        padding: 80px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .contact-map {
        transform: translateY(60px);
    }

    .contact-content {
        transform: translateY(60px);
    }

    .contact-map.show,
    .contact-content.show {
        transform: translateY(0);
    }

    .contact-map img {
        max-width: 500px;
    }

    .contact-content h2 {
        font-size: 40px;
    }

}

    /* =====================================================
       MOBILE
    ===================================================== */

    @media (max-width: 600px) {

        .contact-section {
            padding: 65px 0;
        }

        .contact-container {
            width: 90%;

            gap: 40px;
        }

        .contact-map img {
            max-width: 420px;
        }

        .contact-intro {
            font-size: 20px;
        }

        .contact-content h2 {
            font-size: 34px;

            margin-bottom: 28px;
        }

        .contact-form {
            grid-template-columns: 1fr;

            gap: 20px;
        }

        .form-group-full {
            grid-column: auto;
        }

        .input-box {
            height: 64px;
        }

        .input-box input,
        .input-box textarea,
        .input-box label {
            font-size: 17px;
        }

        .input-box input,
        .input-box textarea {
            padding-left: 20px;
            padding-right: 52px;
        }

        .input-box label {
            padding-left: 20px;
            padding-right: 52px;
        }

        .input-box > i {
            right: 20px;

            font-size: 19px;
        }

        .textarea-box {
            height: 140px;
        }

        .contact-submit {
            width: 100%;

            font-size: 18px;
        }

    }


/* =====================================================
   NAVIGATION SCROLL OFFSET
===================================================== */

#home,
#ueber-uns,
#pflasterreinigung,
#kontakt {
    scroll-margin-top: 85px;
}


/* =====================================================
   SECTION SCROLL OFFSET
===================================================== */


/* =====================================================
   VORHER / NACHHER LABELS
===================================================== */

.paving-card {
    position: relative;
}

.paving-label {
    position: absolute;

    top: 15px;

    padding: 6px 14px;

    background: #ffffff !important;
    color: #154FB3 !important;

    font-size: 26px !important;
    font-weight: 600;

    line-height: 1.1;

    border-radius: 6px;

    z-index: 5;
    pointer-events: none;

    box-shadow: none;
}

.paving-before {
    left: 15px;
}

.paving-after {
    right: 15px;
}


/* =====================================================
   VORHER / NACHHER - MOBILE
===================================================== */

@media (max-width: 600px) {

    .paving-label {
        top: 10px;

        padding: 5px 10px;

        background: #ffffff !important;
        color: #154FB3 !important;

        font-size: 18px !important;

        border-radius: 5px;
    }

    .paving-before {
        left: 10px;
    }

    .paving-after {
        right: 10px;
    }

}

/* =====================================================
   IMAGE LIGHTBOX
===================================================== */

#imageLightbox {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.90);

    display: flex;

    justify-content: center;
    align-items: center;

    padding: 40px;

    box-sizing: border-box;

    opacity: 0;
    visibility: hidden;

    z-index: 99999;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


#imageLightbox.active {
    opacity: 1;

    visibility: visible;
}


#lightboxImage {
    display: block;

    max-width: 90vw;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
        0 10px 50px rgba(0, 0, 0, 0.50);
}


#lightboxClose {
    position: absolute;

    top: 25px;
    right: 35px;

    width: 45px;
    height: 45px;

    border: none;

    background: transparent;

    color: white;

    font-size: 42px;

    line-height: 1;

    cursor: pointer;

    z-index: 100000;
}


#lightboxClose:hover {
    opacity: 0.7;
}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    #imageLightbox {
        padding: 20px;
    }

    #lightboxImage {
        max-width: 95vw;
        max-height: 85vh;
    }

    #lightboxClose {
        top: 15px;
        right: 20px;

        font-size: 36px;
    }

}

/* ================= SPACE BEFORE FOOTER ================= */

.site-footer {
    margin-top: 35px;
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    width: 100%;

    background: #154FB3;

    padding: 115px 0 80px;

    position: relative;

    min-height: 360px;
}

/* ================= FOOTER CONTAINER ================= */

.footer-container {
    width: 91%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;
}


/* ================= FOOTER LOGO ================= */

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    width: 320px;
    height: auto;
    display: block;
}


/* ================= FOOTER SIDES ================= */

.footer-side {
    min-height: 1px;
}


/* =====================================================
   FOOTER CONTACT BAR
===================================================== */

.footer-contact-bar {
    width: 91%;
    max-width: 1400px;

    margin: 0 auto;

    position: absolute;

    top: -100px;
    left: 50%;

    transform: translateX(-50%);

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    background: #ffffff;

    border-radius: 6px;

    overflow: hidden;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.10);
}


/* ================= CONTACT ITEM ================= */

.footer-contact-item {
    min-height: 150px;

    padding: 25px 20px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    color: #154FB3;

    text-decoration: none;

    border-right: 1px solid #e5e5e5;
}

.footer-contact-item:last-child {
    border-right: none;
}


/* ================= ICON ================= */

.footer-contact-item i {
    margin-bottom: 10px;

    color: #154FB3;

    font-size: 32px;
}


/* ================= TITLE ================= */

.footer-contact-item strong {
    margin-bottom: 5px;

    color: #154FB3;

    font-size: 21px;
    font-weight: 700;
}


/* ================= INFORMATION ================= */

.footer-contact-item span {
    color: #154FB3;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.5;
}


/* ================= HOVER ================= */

.footer-contact-item:hover {
    background: #f7f9fc;
}


/* =====================================================
   FOOTER MOBILE
===================================================== */

@media (max-width: 800px) {

    .site-footer {
        padding: 30px 0 35px;
    }

    .footer-logo img {
        width: 170px;
    }

    .footer-contact-bar {
        grid-template-columns: 1fr;
    }

    .footer-contact-item {
        min-height: 135px;

        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

    .footer-contact-item:last-child {
        border-bottom: none;
    }

}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
    width: 91%;
    max-width: 1400px;

    position: absolute;

    top: 105px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ================= COPYRIGHT ================= */

.footer-copyright {
    margin: 0;

    color: #ffffff;

    font-size: 17px;
    font-weight: 600;
}


/* ================= RIGHT SIDE ================= */

.footer-bottom-right {
    display: flex;
    flex-direction: column;

    align-items: flex-end;
}


/* ================= LEGAL LINKS ================= */

.footer-legal-links {
    display: flex;
    align-items: center;

    gap: 10px;
}

.footer-legal-links a {
    color: #ffffff;

    font-size: 16px;
    font-weight: 500;

    text-decoration: none;
}

.footer-legal-links span {
    color: #ffffff;

    font-size: 16px;
}


/* ================= SOCIAL ICONS ================= */

.footer-social-links {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 12px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    color: #ffffff;

    font-size: 22px;

    text-decoration: none;
}

/* ================= FILE LIST ================= */

.file-list {
    width: 100%;
    margin-top: 12px;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 10px 14px;

    background: #f5f7fa;
    border-radius: 6px;

    font-size: 14px;
    color: #333;
}

.file-name {
    display: flex;
    align-items: center;
    gap: 8px;

    min-width: 0;
}

.file-name span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-remove {
    flex-shrink: 0;

    border: none;
    background: transparent;

    color: #154FB3;

    font-size: 20px;
    font-weight: 600;

    cursor: pointer;

    padding: 0 4px;

    transition: 0.2s ease;
}

.file-remove:hover {
    color: #d00000;
}

/* =====================================================
   LEGAL PAGES
   IMPRESSUM & DATENSCHUTZ
===================================================== */

.legal-section {
    width: 100%;
    background: #ffffff;
    padding: 100px 20px 140px;
}

.legal-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.legal-container h1 {
    margin: 0 0 45px;

    color: #154FB3;

    font-size: 48px;
    font-weight: 800;

    text-align: center;
}

.legal-content {
    color: #333333;

    font-size: 17px;
    line-height: 1.8;
}

.legal-content h2 {
    margin: 40px 0 15px;

    color: #154FB3;

    font-size: 25px;
    font-weight: 700;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin: 0 0 22px;
}

.legal-content ul {
    margin: 0 0 25px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: #222222;
    font-weight: 700;
}


/* =====================================================
   LEGAL PAGES - MOBILE
===================================================== */

@media (max-width: 768px) {

    .legal-section {
        padding: 70px 20px 110px;
    }

    .legal-container h1 {
        margin-bottom: 35px;
        font-size: 38px;
    }

    .legal-content {
        font-size: 16px;
        line-height: 1.7;
    }

    .legal-content h2 {
        margin-top: 32px;
        font-size: 22px;
    }

}