/* ===== CSS RESET & BASE ===== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1.6;
    font-family: 'Roboto', Arial, sans-serif;
    color: #212121;
    background: #F5F5F5;
    font-size: 16px;
    min-height: 100vh;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: #FFB300;
    text-decoration: none;
    transition: color .2s;
}
a:hover, a:focus {
    color: #263238;
    text-decoration: underline;
}
ul, ol {
    margin-left: 24px;
    margin-bottom: 16px;
}
li {
    margin-bottom: 8px;
}

/* ===== BRAND FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* ===== GLOBAL CLASSES & UTILITIES ===== */
.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 6px 24px rgba(38,50,56,0.06);
    border-radius: 24px;
}
@media (max-width: 768px) {
    .section {
        padding: 26px 6px;
        margin-bottom: 36px;
    }
}
.content-wrapper {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

/* ======= TYPOGRAPHY ======= */
h1, .h1 {
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #263238;
    letter-spacing: 1px;
    margin-bottom: 18px;
    line-height: 1.13;
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2rem;
  }
}
h2, .h2 {
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #FFB300;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    line-height: 1.18;
}
@media (max-width: 768px) {
  h2, .h2 {
    font-size: 1.5rem;
  }
}
h3, .h3 {
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #263238;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    line-height: 1.21;
}
p, ul, ol, td, th, span, table {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    color: #333;
}
p {
    margin-bottom: 16px;
}
strong, b {
    font-weight: 700;
}

/* ======= HEADER & NAV ======= */
header {
    width: 100%;
    background: #263238;
    margin-bottom: 0;
    box-shadow: 0 .5px 10px rgba(38,50,56,0.10);
    position: relative;
    z-index: 30;
}
header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 18px;
}
header img {
    height: 44px;
    width: auto;
}
nav {
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: center;
}
nav a {
    color: #FFB300;
    text-transform: uppercase;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: .5px;
    font-weight: 500;
    padding: 0 2px;
    transition: color .2s;
    position: relative;
    z-index: 1;
}
nav a:hover, nav a:focus {
    color: #fff000;
    text-shadow: 0 2px 8px #FFB30044;
}
.cta-primary {
    color: #fff;
    background: #FFB300;
    border-radius: 6px;
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 11px 32px;
    box-shadow: 0 6px 14px -4px #FFA00022;
    border: none;
    cursor: pointer;
    margin-left: 24px;
    transition: background .2s, box-shadow .23s, transform .25s;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    outline: none;
    display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
    background: #ffa600;
    color: #212121;
    box-shadow: 0 10px 30px -6px #FFA00066;
    transform: translateY(-2px) scale(1.04);
}
.cta-secondary {
    background: #263238;
    color: #fff;
    border-radius: 6px;
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 10px 28px;
    box-shadow: 0 6px 14px -4px #21212133;
    border: 2px solid #FFB300;
    cursor: pointer;
    margin-top: 14px;
    transition: background .22s, color .16s, border .22s, box-shadow .22s, transform .21s;
    text-transform: uppercase;
    outline: none;
    display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
    background: #FFB300;
    color: #263238;
    border: 2px solid #263238;
    box-shadow: 0 10px 30px -6px #FFA00044;
    transform: translateY(-1.5px) scale(1.03);
}

/*==== MOBILE NAV ====*/
.mobile-menu-toggle {
    display: none;
    position: relative;
    background: none;
    border: none;
    color: #FFB300;
    font-size: 2.2rem;
    cursor: pointer;
    margin-left: 8px;
    z-index: 41;
    transition: color .15s;
    line-height: 1;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
    color: #FFA000;
}
.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: #212121f0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    z-index: 100;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.73,.03,.37,.88);
    box-shadow: -10px 0 40px 2px #26323855;
}
.mobile-menu.open {
    transform: translateX(0%);
}
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2.4rem;
    color: #FFB300;
    cursor: pointer;
    margin: 24px 32px 4px 0;
    z-index: 102;
    transition: color .16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
    color: #fff000;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 30px 36px;
    width: 90%;
    gap: 24px;
}
.mobile-nav a {
    color: #fff;
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding: 8px 0;
    transition: color .18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
    color: #FFB300;
    text-shadow: 0 2px 10px #FFB300;
}
@media (max-width: 992px) {
    nav, .cta-primary {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}
@media (max-width: 550px) {
  .mobile-nav {
    margin: 16px 10px;
    width: 99%;
  }
}

/* ===== MAIN ===== */
main {
    flex: 1 1 auto;
    min-height: 400px;
    padding-bottom: 40px;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
@media (max-width: 900px) {
    .content-grid {
        flex-direction: column;
        gap: 18px;
    }
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }
}
.feature-grid, .feature-item, .project-highlights, .blog-post-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 16px;
}
.feature-grid > div, .blog-post-list > div {
    flex: 1 1 210px;
    min-width: 210px;
    background: #fffbe5;
    border-radius: 18px;
    box-shadow: 0 6px 22px -8px #FFB30066;
    padding: 24px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow .18s, transform .18s;
    border: 2.5px solid #FFB30024;
}
.feature-grid > div:hover, .blog-post-list > div:hover {
    box-shadow: 0 14px 34px -9px #FFA00077;
    transform: translateY(-4px) scale(1.03);
}
.feature-grid img {
    height: 42px;
    width: 42px;
    margin-bottom: 10px;
}
.feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 18px -5px #FFB30033;
    padding: 24px;
    transition: box-shadow .18s, transform .17s;
}
.card:hover {
    box-shadow: 0 9px 28px -7px #FFA00088;
    transform: scale(1.02);
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 30px 20px 26px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 34px -9px #21212133;
    margin-bottom: 20px;
    border-left: 6px solid #FFB300cc;
    transition: box-shadow .19s, border-color .16s;
    max-width: 700px;
    min-width: 220px;
}
.testimonial-card p {
    font-style: italic;
    color: #151515;
    font-size: 1.13rem;
}
.testimonial-card span {
    font-size: 1rem;
    color: #263238;
    font-weight: 700;
    letter-spacing: .3px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
    border-left: 6px solid #ffa600;
    box-shadow: 0 16px 46px -11px #FFA00066;
}

/* Ensure readable contrast in testimonials */
.testimonial-card, .testimonial-card p, .testimonial-card span {
    background: #fff !important;
    color: #212121 !important;
}

/* ===== SHORT CONTACT ===== */
.short-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.short-contact img {
    width: 22px;
    height: 22px;
    margin-right: 6px;
}
.short-contact span {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1.04rem;
    color: #263238;
    font-weight: 600;
    margin-right: 18px;
    letter-spacing: .7px;
}

/* ===== TABLE STYLING ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    background: #fff9e1;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 2px 9px -3px #FFC10744;
}
th, td {
    padding: 16px 10px;
    border-bottom: 1px solid #FFC10744;
    font-size: 1rem;
}
thead th {
    background: #FFB300;
    color: #263238;
    font-family: 'Oswald', Arial, sans-serif;
    letter-spacing: .5px;
    font-weight: 700;
    font-size: 1.1rem;
}
tbody tr:hover {
    background: #fff5de;
}

/* ===== FAQ ===== */
.content-faq {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.content-faq h3 {
    margin-top: 14px;
    margin-bottom: 7px;
    color: #263238;
    font-size: 1.12rem;
}
.content-faq p {
    color: #333;
    margin-bottom: 0;
    font-size: 1rem;
}

/* ===== BUTTONS GENERIC ===== */
button {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1rem;
    border-radius: 6px;
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    background: #FFB300;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background .19s, box-shadow .18s, color .18s, transform .18s;
    box-shadow: 0 2px 8px -2px #FFB30033;
}
button:hover, button:focus {
    background: #FFA000;
    color: #212121;
    box-shadow: 0 8px 26px -6px #FFA00088;
    transform: scale(1.045);
}

/* ===== BLOG LIST ===== */
.blog-categories {
    margin-bottom: 18px;
}
.blog-categories strong {
    color: #FFB300;
}
.blog-post-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.blog-post-list > div {
    flex: 1 1 280px;
    background: #fffcf1;
    border-radius: 16px;
    box-shadow: 0 5px 22px -9px #ffb30055;
    padding: 16px 18px;
    transition: box-shadow .18s, transform .18s;
}
.blog-post-list > div:hover {
    box-shadow: 0 14px 34px -7px #FFB30077;
    transform: scale(1.03);
}

/* ===== NEWSLETTER SIGNUP ===== */
.newsletter-signup {
    background: #fffbe5;
    border-radius: 10px;
    box-shadow: 0 2px 15px -3px #FFA00032;
    padding: 18px 20px;
    margin-top: 26px;
    text-align: center;
}
.newsletter-signup a.cta-secondary {
    display: inline-block;
    margin-top: 10px;
}

/* ===== FOOTER ===== */
footer {
    width: 100%;
    background: #263238;
    color: #fff;
    margin-top: 30px;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
}
footer .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 16px 24px 16px;
    gap: 28px;
    flex-wrap: wrap;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    color: #FFB300;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1.01rem;
    letter-spacing: .8px;
    transition: color .17s;
}
.footer-links a:hover, .footer-links a:focus {
    color: #fff000;
}
.footer-contact {
    font-size: .98rem;
    color: #fff;
    line-height: 1.6;
    margin-top: 7px;
}
.footer-contact p{
    color: #fff;
}
footer img {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
}
@media (max-width: 900px) {
    footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px 10px 22px 10px;
    }
}

/* ===== MAP + CONTACT DETAILS on Contact Page ===== */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
    background: #fffbe5;
    padding: 18px 18px 18px 22px;
    border-radius: 12px;
    box-shadow: 0 4px 12px -3px #FFA00022;
}
.location-map {
    background: #fffbe5;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 2px 8px -2px #FFA00044;
    margin-bottom: 12px;
}
.contact-details img {
    vertical-align: middle;
    margin-right: 7px;
}

/* ===== GALLERY PROJECT HIGHLIGHTS ===== */
.project-highlights {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.project-highlights h2 {
    margin-top: 8px;
    color: #263238;
    font-size: 1.27rem;
    font-family: 'Oswald', Arial, sans-serif;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
    .feature-grid, .card-container, .content-grid, .blog-post-list {
        flex-direction: column;
        gap: 18px;
    }
}
@media (max-width: 730px) {
    .container, .footer .container {
        padding: 0 7px;
    }
}

@media (max-width: 600px) {
    h1, .h1 {
        font-size: 1.38rem;
    }
    h2, .h2 {
        font-size: 1.09rem;
    }
    .section {
        padding: 13px 2px;
    }
    .card {
        padding: 12px 10px;
    }
    .feature-grid > div {
        padding: 13px 7px;
    }
    .testimonial-card {
        padding: 13px 8px 13px 13px;
    }
}

/* ===== COOKIE CONSENT BANNER ===== 
 - Fixed at bottom, animate in/out, with buttons & modal
*/
.cookie-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 1900;
    background: #fffbe6;
    box-shadow: 0 -4px 20px #26323836;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 34px 22px 18px;
    gap: 18px;
    animation: slideUpCookie .44s cubic-bezier(.66,-0.01,.28,1.17);
}
@keyframes slideUpCookie {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
    color: #263238;
    font-size: 1.05rem;
    margin: 0;
    flex: 1 1 auto;
}
.cookie-banner .cookie-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}
.cookie-banner button {
    min-width: 112px;
    padding: 9px 16px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s, color .12s, box-shadow .13s, transform .13s;
}
.cookie-banner .accept {
    background: #FFB300;
    color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
    background: #FFA000;
    color: #fff;
    box-shadow: 0 4px 20px #FFA00044;
}
.cookie-banner .reject {
    background: #eee;
    color: #263238;
    border: 1.5px solid #FFB300;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
    background: #fffbe6;
    color: #FFA000;
    border-color: #FFA000;
    box-shadow: 0 2px 8px #FFA00033;
}
.cookie-banner .settings {
    background: #263238;
    color: #fff;
    border: 1.5px solid #FFB300;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
    background: #FFB300;
    color: #263238;
}
@media (max-width: 650px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 7px 10px;
        gap: 13px;
    }
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
    position: fixed;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: #212121c0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInCookieModal .23s linear;
}
@keyframes fadeInCookieModal {
    from { opacity: 0; }
    to { opacity: 1; }
}
.cookie-modal .modal-content {
    background: #fffbe5;
    padding: 36px 30px 32px 28px;
    border-radius: 22px;
    box-shadow: 0 11px 44px -10px #26323844;
    max-width: 430px;
    width: 92vw;
    display: flex;
    flex-direction: column;
    gap: 21px;
    position: relative;
}
@media (max-width: 500px) {
    .cookie-modal .modal-content {
        padding: 16px 7px 17px 7px;
        border-radius: 13px;
    }
}
.cookie-modal h3 {
    font-family: 'Oswald', Arial, sans-serif;
    color: #FFB300;
    font-size: 1.23rem;
    letter-spacing: .4px;
    margin-bottom: 9px;
}
.cookie-modal label {
    font-family: 'Roboto', Arial, sans-serif;
    color: #263238;
    font-size: 1.02rem;
}
.cookie-modal .category {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
    gap: 11px;
}
.cookie-modal .modal-buttons {
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin-top: 12px;
}
.cookie-modal .close-modal {
    background: none;
    border: none;
    color: #263238;
    font-size: 2rem;
    position: absolute;
    top: 10px; right: 18px;
    cursor: pointer;
    z-index: 4;
    transition: color .17s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
    color: #FFB300;
}
.cookie-modal input[type="checkbox"] {
    accent-color: #FFB300;
    width: 20px; height: 20px;
}
.cookie-modal .category.essential label {
    opacity: .8;
    font-style: italic;
}

/* Ensuring min spacing between sections*/
section + section {
    margin-top: 32px;
}

/* ====== MICRO INTERACTIONS ====== */
[tabindex="0"]:focus {
    outline: 2px solid #FFB300;
    outline-offset: 2px;
}

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar {
    width: 9px;
    background: #eee;
}
::-webkit-scrollbar-thumb {
    background: #FFB30066;
    border-radius: 7px;
}

/* ====== ACCENTUATE ENERGIZED SECTIONS ====== */
.section:nth-child(even) {
    background: #fffbe5;
    box-shadow: 0 9px 32px -10px #FFB30033;
}

/* ====== AVATARS or ICONS GENERAL ====== */
img[alt^="Telefon"], img[alt^="Email"] {
    background: #FFB30022;
    border-radius: 6px;
    padding: 3px;
}

/* ====== SPECIAL UTILITY CLASSES ====== */
.hide-on-desktop {
    display: none !important;
}
@media (max-width: 992px) {
    .hide-on-mobile {
        display: none !important;
    }
    .hide-on-desktop {
        display: block !important;
    }
}

/* ====== THANK YOU PAGE ====== */
.thank-you-section h1 {
    text-align: center;
    margin-bottom: 28px;
}

/* ====== Z-INDEX LAYERS ====== */
header { z-index: 30; }
.mobile-menu { z-index: 100; }
.cookie-banner { z-index: 1900; }
.cookie-modal { z-index: 2100; }

/* ===== VIBRANT ELEMENTS (electric energy) ===== */
.cta-primary, .cta-secondary, .feature-grid > div, .card {
    transition: box-shadow .17s, background .19s, color .19s, border .19s, transform .19s;
}
.feature-grid > div {
    border: 2.5px solid #FFB3001c;
}

/* ====== END OF CSS ====== */
