/* ===== GLOBAL STYLES ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #22293A;
    color: #fff;
    overflow: hidden;
}

.navbar nav a {
    color: rgb(241, 245, 242);
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
     padding: 15px 25px;   /* bigger hover area */
}

.navbar nav a:hover {
    background-color: #6A8BBD;
}

/* ===== HERO SECTION ===== */
.hero {
    background: #22293A;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

/* ===== CONTACT SECTION ===== */
.contact-container {
    display: flex;
    padding: 60px 10%;
    gap: 40px;
}

/* linke & rechte Seite gleich breit */
.contact-left,
.contact-right {
    flex: 1;
}

/* left side content */
.contact-left,
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: #000000;
}

/* ===== INFO CARDS ===== */
.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 18px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.info-card.highlight {
    border: 2px solid #6A8BBD;
}

/* ===== LINKS ===== */
.phone-link,
.email-link,
.contact-link {
    color: #000000;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.phone-link:hover,
.email-link:hover,
.contact-link:hover {
    color: #6A8BBD;
    text-decoration: underline;
    transform: scale(1.05);
}

/* ===== ICONS ===== */
.icon {
    font-size: 22px;
    color: #22293A;
}

/* ===== LABELS ===== */
.label {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.info-card h4 {
    margin: 2px 0 0 0;
    color: #000000;
    font-weight: 600;
}

/* ===== FORM STYLES ===== */
form {
    width: 100%;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* important for a clean layout */
* {
    box-sizing: border-box;
}

.message-box {
    min-height: 140px;
    resize: vertical;
}

form button {
    background: #22293A;
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 6px;
}

form button:hover {
    background: #6A8BBD;
}

form button:active {
    background: #303A52;
}

form button:disabled {
    background: #F2F2F2;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        padding: 40px 5%;
        gap: 30px;
    }

    .contact-left,
    .contact-right {
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 600px) {
    .contact-container {
        padding: 30px 5%;
    }

    form input,
    form textarea {
        width: 100%;
    }
}

/* ===== CONTENT CONTAINER ===== */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 20px;
    
}

/* ===== ABOUT/SERVICE BOXES ===== */
.about-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.about-boxes .service-card {
    flex: 1 1 30%;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-boxes .service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about-boxes .service-card .icon {
    font-size: 28px;
    color: #22293A;
    flex-shrink: 0;
}

.about-boxes .service-card h3 {
    margin: 0 0 5px 0;
    color: #22293A;
    font-size: 18px;
    font-weight: 600;
}

.about-boxes .service-card p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 900px) {
    .about-boxes .service-card {
        flex: 1 1 250px; 
        max-width: 400px;
    }
}

@media screen and (max-width: 600px) {
    .about-boxes .service-card {
        flex: 1 1 100%; /* voll width */
        max-width: 100%;
    }
    .content-container {
        padding: 40px 5%;
    }
}

/* ===== PREMIUM SERVICES SECTION ===== */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    padding: 80px 10%;
    background: linear-gradient(to bottom, #f9f9f9, #f2f2f2);
}

/* ===== SERVICE CARD ===== */
.services-container .service-card {
    background: #ffffff;
    padding: 38px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.services-container .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.services-container .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #22293A, #6A8BBD);
}

.services-container .service-card .icon {
    font-size: 40px;
    margin-bottom: 18px;
    display: inline-block;
}

.services-container .service-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 600;
    color: #000000;
}

.services-container .service-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
}

.services-container .service-card ul {
    padding-left: 18px;
    margin: 0;
}

.services-container .service-card li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #000000;
}

.services-container .service-card li::marker {
    color: #000000;
}

/* ===== INFO BOX ===== */
.info-box {
    background: #fff;
    padding: 30px 40px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin: 40px 10%;
    text-align: center;
    border-left: 5px solid #22293A;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.info-box h3 {
    font-size: 30px;
    color: #111;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-box p {
    font-size: 20px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 10px;
}

.logo {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.navbar .logo img {
    height: 60px;      
    width: auto;     
    display: block;    
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 900px) {
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 18px;
        padding: 50px 5%;
    }

    .services-container .service-card {
        padding: 20px 15px;
    }

    .services-container .service-card .icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .services-container .service-card h3 {
        font-size: 18px;
    }

    .services-container .service-card p {
        font-size: 15px;
    }

    .services-container .service-card li {
        font-size: 13px;
    }

    .info-box {
        padding: 20px 15px;
        margin: 20px 5%;
    }

    .info-box h3 {
        font-size: 20px;
    }

    .info-box p {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .services-container {
        grid-template-columns: 1fr; /* only one card per row */
        padding: 40px 5%;
        gap: 15px;
    }

    .services-container .service-card {
        padding: 18px 15px;
    }

    .services-container .service-card .icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .services-container .service-card h3 {
        font-size: 16px;
    }

    .services-container .service-card p {
        font-size: 14px;
    }

    .services-container .service-card li {
        font-size: 12px;
    }

    .info-box {
        padding: 18px 15px;
        margin: 15px 5%;
    }

    .info-box h3 {
        font-size: 18px;
    }

    .info-box p {
        font-size: 13px;
    }
}

/* ===== ABOUT US PAGE ===== */

/* MAIN BOX */
.main-box {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.main-box h2 {
    font-size: 32px;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 600;
}

.main-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
}

/* CARD SECTION */
.card-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 30px;
    flex: 1 1 400px;
    max-width: 500px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000000;
}

.card p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

/* CTA SECTION */
.cta {
    background: #6A8BBD;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin: 60px 0;
    border-radius: 16px;
}

.cta h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    line-height: 1.6;
}

/* TAGS */
.tags {
    text-align: center;
    margin: 40px 0;
}

.tag {
    display: inline-block;
    background: #22293A;
    color: #fff;
    padding: 12px 30px;       /* more spacing top/bottom and left/right */
    margin: 10px;             /* larger spacing between the tags */
    border-radius: 35px;      
    font-size: 20px;           /* larger text */
    font-weight: 600;          /* bold text */
    transition: transform 0.3s, background 0.3s; 
}

.tag:hover {
    background: #6A8BBD;
    transform: scale(1.1);     /* slight zoom on hover */
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 900px) {
    .card-section {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 600px) {
    .hero h1 {
        font-size: 32px;
    }
    .main-box h2 {
        font-size: 26px;
    }
    .cta h2 {
        font-size: 24px;
    }
    .card {
        padding: 25px;
    }
}
/* FK */
/* ===== START SECTION MODERN ===== */
/* HERO SECTION */
.hero {
    background: #f5f7fa;
    color: #22293A;
    text-align: center;
    padding: 80px 20px;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch; /* same height */
}

/* HIGHLIGHT CARD – Gebäudereinigung & Team */
.highlight-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: visible;
    max-width: 500px;        /* same size */
    flex: 1 1 450px;         /* grows with the container */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.highlight-card:active {
    transform: translateY(2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Image inside the card */
.highlight-card img {
    width: 100%;
    height: 250px;       /* ensures equal card height */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}

/* Text */
.highlight-text {
    padding: 15px;
    text-align: left;
}

.highlight-text h3 {
    font-size: 50px;
    text-align: left;
    padding: 15px;
}

.highlight-text p {
    font-size: 25px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 15px;
}


/* INFO SECTION */
.info {
    background: #6A8BBD;
    color: white;
    text-align: left;
    padding: 50px 40px;
    margin: 0 auto 60px;
    border-radius: 16px;
    max-width: 1800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.info h1 {
    font-size: 48px;
}

.info p {
    font-size: 30px;
    line-height: 1.7;
}

.info h2 {
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.address {
    font-size: 20px;
    line-height: 0.5;
    margin-top: 0px;
    font-weight: 500;
}

/* Kontakt Buttons */
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.phone, .whatsapp, .btn-primary {
    padding: 14px 0px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 1;
    text-align: center;
    max-width: 200px;
}

.phone {
    background: #fff;
    color: #6A8BBD;
}

.whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-primary {
    background: #e30613;
    color: #fff;
}

.phone:hover, .whatsapp:hover, .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.phone:active, .whatsapp:active, .btn-primary:active {
    transform: scale(0.95);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media screen and (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .highlight-card {
        max-width: 90%;
    }
    .info {
        padding: 60px 30px;
    }
}

@media screen and (max-width: 600px) {
    .highlight-card img {
        height: auto;
    }
    .highlight-text h3 {
        font-size: 22px;
    }
    .highlight-text p {
        font-size: 14px;
    }
    .info h1 {
        font-size: 28px;
    }
    .info p {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .contact-buttons {
        flex-direction: column;
    }

    .phone, .whatsapp, .btn-primary {
        width: 100%;
        max-width: 100%;
    }
}