*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Stronger mobile contact fixes to prevent overflow and force stacking */
@media (max-width: 768px) {
    body { overflow-x: hidden; }

    .contact {
        padding: 36px 16px;
    }

    .contact-box{
        display: grid;
        grid-template-columns: 1fr !important;
        grid-auto-flow: row;
        gap: 24px !important;
        align-items: start;
    }

    .contact-info h2{
        font-size: 34px !important;
        line-height: 1.05 !important;
        margin: 8px 0 !important;
    }

    .contact-form{
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        padding: 18px !important;
        border-radius: 12px !important;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button{
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact-form textarea{
        height: 140px !important;
    }
}

@media (max-width: 480px) {
    body { overflow-x: hidden; }

    .contact{
        padding: 28px 12px !important;
    }

    .contact-info h2{
        font-size: 26px !important;
        line-height: 1.05 !important;
    }

    .contact-form{
        padding: 14px !important;
    }

    .contact-form textarea{
        height: 120px !important;
    }
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', sans-serif;
    background:#0d1117;
    color:white;
}

.navbar{
    width:100%;
    height:92px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 55px;
    position:fixed;
    top:0;
    left:0;
    background:rgba(3,10,18,0.86);
    backdrop-filter:blur(12px);
    z-index:1000;
}

.logo img{
    height:200px;
    width:auto;
    display:block;
    margin-top:38px;

}

.logo span{
    font-size:31px;
    font-weight:800;
    letter-spacing:1px;
}

.logo small{
    margin-top:5px;
    font-size:9px;
    text-transform:uppercase;
    color:#c7c7c7;
}

.nav-links{
    display:flex;
    align-items:center;
    list-style:none;
    gap:32px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#d4af37;
}

.nav-contact{
    display:flex;
    align-items:center;
    gap:25px;
    font-size:13px;
    font-weight:700;
}

.nav-contact a{
    color:white;
    text-decoration:none;
    background:#c99b45;
    padding:13px 22px;
    border-radius:3px;
    text-transform:uppercase;
}

.hero{
    width:100%;
    height:620px;
    background:url('images/hero.png');
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
    padding:92px 70px 0;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(4,12,22,0.72) 0%,
        rgba(4,12,22,0.42) 30%,
        rgba(4,12,22,0.00) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:620px;
}

.eyebrow{
    display:block;
    color:#c99b45;
    text-transform:uppercase;
    letter-spacing:5px;
    font-size:18px;
    font-weight:700;
    margin-bottom:14px;
}

.hero-content h1{
    font-size:58px;
    line-height:1.08;
    margin-bottom:28px;
    font-weight:800;
    letter-spacing:-1.5px;
}

.hero-content p{
    font-size:16px;
    line-height:1.8;
    color:#e1e1e1;
    margin-bottom:38px;
}

.hero-buttons{
    display:flex;
    gap:18px;
}

.projekte-hero .hero-buttons .btn{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:8px 18px;
    font-size:14px;
    min-height:45px;
    line-height:1;
}

.btn{
    padding:16px 32px;
    text-decoration:none;
    border-radius:4px;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    transition:0.3s;
}

.gold-btn{
    background:#c99b45;
    color:white;
}

.gold-btn:hover{
    background:white;
    color:#0b1220;
}

.transparent-btn{
    border:1px solid rgba(255,255,255,0.75);
    color:white;
}

.transparent-btn:hover{
    background:white;
    color:#0b1220;
}

.trustbar{
    background:#07111d;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
    padding:28px 90px;
    border-top:1px solid rgba(255,255,255,0.04);
    border-bottom:1px solid rgba(255,255,255,0.04);
}

.trust-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    min-height:62px;
    border-right:1px solid rgba(255,255,255,0.12);
}

.trust-item:last-child{
    border-right:none;
}

.trust-icon{
    font-size:30px;
    color:#c99b45;
    min-width:42px;
    text-align:center;
}

.trust-item h4{
    font-size:15px;
    margin-bottom:5px;
}

.trust-item p{
    color:#d1d1d1;
    font-size:13px;
}

.showcase{
    background:#04101f;
    padding:26px 70px;
}

.showcase{
    background:#04101f;
    padding:20px 70px 80px;
}

.section-title{
    text-align:center;
    margin-bottom:34px;
}

.section-title span{
    color:#d6a849;
    text-transform:uppercase;
    letter-spacing:5px;
    font-weight:800;
    font-size:20px;
}

.section-title h2{
    color:#fff;
    font-size:32px;
    margin-top:12px;
}

.service-split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
    max-width:1500px;
    margin:0 auto;
}

.service-card{
    position:relative;
    height:400px;
    border-radius:10px;
    overflow:hidden;
    border:1px solid rgba(214,168,73,0.55);
    display:block;
    color:#fff;
    text-decoration:none;
    box-shadow:0 18px 45px rgba(0,0,0,0.35);
}

.service-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.service-dark{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(4,12,22,0.88) 0%,
        rgba(4,12,22,0.62) 45%,
        rgba(4,12,22,0.20) 100%
    );
    z-index:1;
}

.service-content{
    position:relative;
    z-index:2;
    height:100%;
    padding:46px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    max-width:560px;
}

.service-content span{
    color:#d6a849;
    text-transform:uppercase;
    letter-spacing:4px;
    font-weight:800;
    font-size:14px;
}

.service-content h3{
    font-size:34px;
    line-height:1.1;
    margin:14px 0 16px;
}

.service-content p{
    color:#ffffff;
    line-height:1.7;
    margin-bottom:22px;
    margin-top:-10px;
    max-width:380px;
}

.service-tags{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px 18px;
    margin-bottom:26px;
}

.service-tags small{
    color:#fff;
    font-size:14px;
}

.service-tags small::before{
    content:"✓ ";
    color:#d6a849;
}

.service-content b{
    width:max-content;
    border:1px solid #d6a849;
    color:#d6a849;
    padding:13px 24px;
    border-radius:5px;
    font-size:14px;
    text-transform:uppercase;
    
}

.service-card:hover img{
    transform:scale(1.06);
}

.service-card:hover{
    transform:translateY(-4px);
    transition:0.3s ease;
}

.why{
    padding:55px 80px 55px;
    background:radial-gradient(circle at top,#142235,#08111e 62%);
    text-align:center;
}

.why-content{
    max-width:900px;
    margin:0 auto;
}

.why-content span{
    color:#d4af37;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;
}

.why-content h2{
    font-size:34px;
    margin:16px 0;
}

.why-content p{
    color:#d1d1d1;
    font-size:15px;
    line-height:1.8;
}

@media (max-width:900px){
    .navbar{
        padding:0 22px;
    }

    /* show nav items on smaller screens and let them wrap */
    .nav-links,
    .nav-contact{
        display:flex;
        flex-direction:row;
        gap:12px;
        align-items:center;
    }

    .hero{
        height:auto;
        min-height:720px;
        padding:140px 25px 70px;
    }

    .hero-content h1{
        font-size:44px;
    }

    .trustbar{
        grid-template-columns:1fr;
        padding:25px;
    }

    .trust-item{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,0.1);
        justify-content:flex-start;
    }

    .showcase{
        padding:25px;
    }

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

    .showcase-box{
        height:360px;
    }

    .showcase-text{
        width:70%;
    }
}
.footer{
    background:#070b12;
    padding:35px 20px 25px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.05);
}

.footer-content h3{
    font-size:32px;
    margin-bottom:15px;
    color:#d4af37;
}

.footer-content p{
    color:#bdbdbd;
    margin-bottom:25px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:30px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#d4af37;
}

.footer-content span{
    color:#7d7d7d;
    font-size:14px;
}
@media (max-width: 900px){

    .navbar{
        padding:18px 25px;
        flex-direction:column;
        gap:15px;
    }

    .logo img{
        height:65px;
        margin-top:0;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .nav-links a{
        font-size:13px;
    }

    .hero{
        padding:120px 25px 60px;
        height:auto;
        min-height:100vh;
    }

    .hero-content h1{
        font-size:44px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .btn{
        text-align:center;
    }

    .trustbar{
        grid-template-columns:1fr;
        padding:35px 30px;
        gap:25px;
    }

    .trust-item::after{
        display:none;
    }

    .showcase{
        padding:30px 20px;
    }

    .showcase-grid,
    .showcase .container{
        grid-template-columns:1fr;
    }

    .showcase-box{
        height:360px;
    }

    .showcase-text{
        width:65%;
    }

    .why{
        padding:80px 25px;
    }

    .why-content h2{
        font-size:34px;
    }

    .footer-links{
        flex-direction:column;
        gap:15px;
    }
    /* ensure contact section stacks on medium-small screens */
    .contact-box{
        grid-template-columns:1fr;
        gap:28px;
    }
    .contact-form{
        width:100%;
        max-width:100%;
        box-sizing:border-box;
    }
}
.contact{
    padding:180px 40px 100px;
    background:#0b1220;
}

.contact-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.contact-info span{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
}

.contact-info h2{
    font-size:48px;
    margin:18px 0;
}

.contact-info p{
    color:#d1d1d1;
    margin-bottom:14px;
    line-height:1.7;
}

.contact-form{
    background:#111827;
    padding:35px;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    gap:18px;
    border:1px solid rgba(255,255,255,0.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:none;
    border-radius:8px;
    background:#0b1220;
    color:white;
    outline:none;
}

.contact-form textarea{
    height:140px;
    resize:none;
}

.contact-form button{
    padding:16px;
    border:none;
    border-radius:8px;
    background:#d4af37;
    color:black;
    font-weight:700;
    cursor:pointer;
}.about-page{
    position:relative;
    overflow:hidden;
    padding:100px 0 80px;
    background-image:url('images/hero.png');
    background-size:cover;
    background-position:top right;
    background-repeat:no-repeat;
}
.about-page::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(3,8,16,0.96) 0%,rgba(3,8,16,0.76) 30%,rgba(3,8,16,0.32) 52%,rgba(3,8,16,0.04) 100%);
    pointer-events:none;
}
.about-page::after{
    content:'';
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top left,rgba(255,255,255,0.04) 0%,transparent 28%);
    pointer-events:none;
}
.about-hero-inner{
    position:relative;
    display:grid;
    grid-template-columns:minmax(360px,1fr) minmax(320px,1.2fr);
    gap:40px;
    align-items:center;
    min-height:700px;
    padding:0 0 40px;
    z-index:1;
}
.about-copy{
    max-width:620px;
}
/* subtle panel behind left content to improve readability without darkening page */
.about-copy{
    position:relative;
    z-index:2;
}
.about-copy::before{
    content:'';
    position:absolute;
    left:-18px;
    top:-18px;
    right:-18px;
    bottom:-18px;
    /* slightly stronger overlay to improve contrast (~12% darker) */
    background: linear-gradient(90deg, rgba(2,6,12,0.55) 0%, rgba(2,6,12,0.30) 48%, rgba(2,6,12,0.14) 100%);
    border-radius:8px;
    z-index:1;
    pointer-events:none;
}
.about-copy .eyebrow{
    display:inline-block;
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:800;
    margin-bottom:18px;
}
.about-copy h1{
    font-size:62px;
    line-height:1.02;
    margin:0 0 24px;
    color:white;
    letter-spacing:-0.8px;
}
.about-copy .intro{
    color:#d5d5d5;
    font-size:17px;
    line-height:1.9;
    margin-bottom:32px;
    max-width:560px;
}
.trust-list{
    display:grid;
    grid-template-columns:repeat(3,minmax(140px,1fr));
    gap:12px;
    margin-bottom:34px;
}
.trust-simple{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:14px;
    padding:0;
}
.trust-simple:not(:last-child){
    border-right:1px solid rgba(255,255,255,0.12);
}
.trust-simple .trust-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d4af37;
    font-size:22px;
    border:1px solid rgba(212,175,55,0.35);
    background:rgba(212,175,55,0.04);
}
.trust-simple h4{
    color:white;
    margin:0;
    font-size:17px;
}
.trust-simple p{
    color:#c9c9c9;
    font-size:14px;
    line-height:1.7;
    margin:0;
}
.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}
.quote-card{
    position:absolute;
    right:32px;
    bottom:32px;
    width:min(360px,88%);
    padding:28px;
    border-radius:26px;
    background:rgba(3,9,17,0.92);
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 32px 60px rgba(0,0,0,0.28);
}
.quote-icon{
    color:#d4af37;
    font-size:24px;
    margin-bottom:18px;
}
.quote-card p{
    color:#e1e1e1;
    font-size:15px;
    line-height:1.85;
    margin:0 0 18px;
}
.quote-card span{
    color:#d4af37;
    font-weight:700;
    font-size:13px;
    letter-spacing:0.9px;
}
.about-stats{
    padding:20px 0 60px;
}
.stats-panel{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    display:flex;
    overflow:hidden;
    min-height:180px;
}
/* very subtle darkening behind the stats panel so numbers read clearly */
.stats-panel{
    position:relative;
    /* stronger subtle darkening for panel (~10-15% deeper) */
    background:linear-gradient(180deg, rgba(2,6,12,0.28), rgba(2,6,12,0.20));
}
.stats-panel::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(2,6,12,0.12);
    z-index:0;
    pointer-events:none;
}
.stats-panel > *{position:relative; z-index:1}

/* slightly reduce all statistic labels for a cleaner visual weight */
.stat-item p{font-size:13px}

/* make the region heading (the 'Region' number) a bit smaller to match weight */
.stat-item:last-child .stat-number{font-size:34px}

/* increase the readable size of the region label text while keeping it elegant */
.stat-item:last-child p{font-size:15px}
.stat-item{
    flex:1;
    padding:24px 30px;
    text-align:center;
}
.stat-item:not(:last-child){
    border-right:1px solid rgba(255,255,255,0.1);
}
.stat-icon{
    display:inline-flex;
    width:44px;
    height:44px;
    align-items:center;
    justify-content:center;
    margin-bottom:12px;
    color:#d4af37;
    border:1px solid rgba(212,175,55,0.35);
    border-radius:14px;
    background:rgba(212,175,55,0.05);
}
.stat-number{
    display:block;
    color:white;
    font-size:40px;
    font-weight:800;
    margin-bottom:10px;
}
.stat-item p{
    color:#d0d0d0;
    font-size:14px;
    line-height:1.8;
    margin:0;
}

@media (max-width: 1100px){
    .about-hero-inner{
        grid-template-columns:1fr;
    }
    .trust-list{
        grid-template-columns:1fr;
    }
    .about-visual{
        justify-content:center;
    }
    .about-image-card{
        min-height:520px;
    }
    .stats-panel{
        flex-direction:column;
    }
    .stat-item:not(:last-child){
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 768px){
    .about-page{
        padding:70px 0 30px;
    }
    .about-copy h1{
        font-size:44px;
    }
    .about-copy .intro{
        font-size:16px;
    }
    .hero-actions{
        flex-direction:column;
        width:100%;
    }
    .quote-card{
        position:relative;
        right:auto;
        bottom:auto;
        width:100%;
        max-width:none;
        margin:22px 0 0;
    }
}

@media (max-width:480px){
    .about-hero-inner{
        gap:28px;
    }
    .about-copy h1{
        font-size:34px;
    }
    .about-image-card{
        border-radius:24px;
    }
    .stat-item{
        padding:20px;
    }
}
.gallery-section {
    padding: 20px 6%;
    background: #070b10;
}

.gallery-grid{
    max-width:1400px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:24px;
}

.gallery-item{
    overflow:hidden;
    border-radius:16px;
    background:#111827;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;

    transition:0.4s ease;
    display:block;
}

.gallery-item:hover img{
    transform:scale(1.05);
    
}.lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.92);
    z-index:9999;
    align-items:center;
    justify-content:center;
}

.lightbox-img{
    max-width:90%;
    max-height:85%;
    border-radius:10px;
}

.close,
.prev,
.next{
    position:absolute;
    color:white;
    font-size:45px;
    cursor:pointer;
    user-select:none;
}

.close{
    top:25px;
    right:40px;
}

.prev{
    left:40px;
}

.next{
    right:40px;
}

.close:hover,
.prev:hover,
.next:hover{
    color:#d4af37;
}

/* Mobile fixes for kontakt.html (do not change desktop layout) */
@media (max-width: 768px) {
    /* prevent horizontal overflow */
    body { overflow-x: hidden; }

    .navbar {
        height: auto;
        padding: 12px 20px;
        align-items: center;
    }

    .logo img {
        height: 60px;
        margin-top: 0;
    }

    .nav-contact a {
        padding: 10px 14px;
    }

    .contact {
        padding: 60px 20px;
    }

    .contact-box {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info h2 {
        font-size: 32px;
        margin: 12px 0;
    }

    .contact-info p {
        font-size: 15px;
    }

    .contact-form {
        padding: 20px;
        border-radius: 12px;
        gap: 12px;
    }

    .contact-form textarea {
        height: 120px;
    }
}

@media (max-width: 480px) {
    body { overflow-x: hidden; }

    .navbar {
        padding: 10px 14px;
    }

    .logo img {
        height: 48px;
    }

    .contact {
        padding: 40px 14px;
    }

    .contact-info h2 {
        font-size: 26px;
    }

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

    .contact-form {
        padding: 14px;
    }

    .contact-form button {
        padding: 12px;
        font-size: 14px;
    }
}@media (max-width: 768px) {
  .contact {
    padding: 60px 20px !important;
    overflow-x: hidden !important;
  }

  .contact-box {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 30px !important;
  }

  .contact-text,
  .contact-form {
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-text h1 {
    font-size: 48px !important;
    line-height: 1.1 !important;
  }

  .contact-form {
    padding: 20px !important;
    box-sizing: border-box !important;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Container helper (used across pages) */
.container{
    max-width:1320px;
    margin:0 auto;
    padding:0 22px;
}

/* Leistungen page styles */
.leistungen-page .leistungen-hero{
    padding:100px 0 30px;
    background:linear-gradient(180deg,#08111f,#050911);
}
.leistungen-page .hero-inner{
    display:grid;
    grid-template-columns:minmax(420px,1fr) minmax(430px,1.35fr);
    gap:40px;
    align-items:center;
}
.leistungen-page .hero-left{
    max-width:640px;
}
.leistungen-page .hero-left .eyebrow{
    color:#d4af37;
    letter-spacing:3px;
    font-weight:800;
    text-transform:uppercase;
    display:inline-block;
    margin-bottom:16px;
}
.leistungen-page .leistungen-hero h1{
    font-size:56px;
    line-height:1.02;
    margin:0 0 22px;
    color:white;
    letter-spacing:-0.5px;
}
.leistungen-page .leistungen-hero p{
    color:#d5d5d5;
    max-width:560px;
    margin-bottom:28px;
    font-size:17px;
    line-height:1.85;
}
.leistungen-page .hero-right{
    display:flex;
    justify-content:flex-end;
}
.leistungen-page .hero-image-card{
    overflow:hidden;
    border-radius:32px;
    box-shadow:0 40px 90px rgba(0,0,0,0.45);
    border:1px solid rgba(212,175,55,0.16);
}
.leistungen-page .hero-image-card img{
    display:block;
    width:100%;
    height:auto;
    object-fit:cover;
}

.leistungen-page .section-header{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:24px;
}
.leistungen-page .section-header span{
    color:#d4af37;
    letter-spacing:3px;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
}
.leistungen-page .section-header h2{
    font-size:30px;
    color:white;
    line-height:1.12;
    max-width:760px;
}
.leistungen-page .section-center{
    align-items:center;
    text-align:center;
}

.leistungen-page .services{
    padding:20px 0 50px;
    background:radial-gradient(circle at top,#08111c 0%,#04070e 68%);
}
.leistungen-page .services-grid{
    display:grid;
    grid-template-columns:repeat(7,minmax(180px,1fr));
    gap:16px;
    align-items:stretch;
}
.leistungen-page .service-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(212,175,55,0.14);
    padding:22px;
    border-radius:20px;
    min-height:210px;
    display:flex;
    flex-direction:column;
    gap:14px;
    transition:transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.leistungen-page .service-card:hover{
    transform:translateY(-3px);
    border-color:rgba(212,175,55,0.35);
    box-shadow:0 18px 42px rgba(0,0,0,0.28);
}
.leistungen-page .service-icon{
    width:56px;
    height:56px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d4af37;
    font-size:22px;
    border:1px solid rgba(212,175,55,0.45);
    background:rgba(212,175,55,0.04);
    flex:0 0 auto;
}
.leistungen-page .service-card h3{
    font-size:16px;
    margin:0;
    color:white;
    line-height:1.35;
}
.leistungen-page .service-card p{
    color:#d2d2d2;
    font-size:13px;
    line-height:1.5;
    margin-top:10px;
}

.leistungen-page .why{
    padding:52px 0 80px;
    background:linear-gradient(180deg,rgba(5,9,18,0.98),rgba(4,7,15,0.92));
}
.leistungen-page .why-inner{
    display:grid;
    gap:28px;
}
.leistungen-page .why-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(180px,1fr));
    gap:18px;
    margin-top:24px;
}
.leistungen-page .why-item{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:22px;
    min-height:190px;
    display:flex;
    flex-direction:column;
    gap:14px;
}
.leistungen-page .why-icon{
    width:48px;
    height:48px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d4af37;
    font-size:20px;
    border:1px solid rgba(212,175,55,0.45);
    background:rgba(212,175,55,0.05);
}
.leistungen-page .why-item h4{
    color:white;
    margin:0;
    font-size:17px;
}
.leistungen-page .why-item p{
    color:#c9c9c9;
    line-height:1.8;
    font-size:14px;
    margin:0;
}

@media (max-width: 1100px){
    .leistungen-page .services-grid{
        grid-template-columns:repeat(4,minmax(180px,1fr));
    }
    .leistungen-page .why-grid{
        grid-template-columns:repeat(3,minmax(180px,1fr));
    }
}

@media (max-width: 992px){
    .leistungen-page .hero-inner{
        grid-template-columns:1fr;
    }
    .leistungen-page .hero-right{
        justify-content:center;
    }
    .leistungen-page .section-header h2{
        font-size:28px;
    }
}

@media (max-width: 768px){
    .leistungen-page .leistungen-hero{padding:70px 0 24px;}
    .leistungen-page .leistungen-hero h1{font-size:38px;}
    .leistungen-page .services{padding-top:24px;}
    .leistungen-page .services-grid{
        grid-template-columns:repeat(2,minmax(220px,1fr));
    }
    .leistungen-page .why-grid{
        grid-template-columns:repeat(2,minmax(220px,1fr));
    }
}

@media (max-width:480px){
    .leistungen-page .leistungen-hero{padding:52px 0 20px;}
    .leistungen-page .leistungen-hero h1{font-size:30px;}
    .leistungen-page .section-header h2{
        font-size:26px;
    }
    .leistungen-page .services-grid,
    .leistungen-page .why-grid{
        grid-template-columns:1fr;
    }
    .leistungen-page .service-card,
    .leistungen-page .why-item{
        padding:18px;
    }
}

/* Projekte page styles */
.projekte-hero{
    width:100%;
    min-height:320px;
    display:flex;
    justify-content:flex-start;
    align-items:flex-start;
    padding:64px 60px 24px;
    position:relative;
    background:url('images/projekte/komplettsanierung/hero.png') center/cover no-repeat;
}
.projekte-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(4,8,15,0.96),rgba(4,8,15,0.78));
}
.projekte-hero-content{
    position:relative;
    z-index:1;
    max-width:520px;
    text-align:left;
    margin:0 0 0 40px;
}
.projekte-hero-title{
    margin-bottom:12px;
}

.hero-title-gold{
    display:block;
    color:#d4af37 !important;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:3px;
}


.projekte-hero h1{
    font-size:28px;
    line-height:1.05;
    margin:0 0 16px;
    color:white;
    font-weight:700;
    letter-spacing:0;
    max-width:520px;
}
.projekte-hero p{
    color:#d1d1d1;
    font-size:14px;
    line-height:1.65;
    max-width:520px;
    margin-bottom:16px;
}
.stats-section{
    margin:0 auto 10px;
}
.stats-strip{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    min-height:90px;
    padding:0 16px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    color:#f6f2eb;
}
.stats-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:4px;
}
.stats-number{
    color:#f8e3a2;
    font-size:28px;
    font-weight:700;
    letter-spacing:0.04em;
}
.stats-label{
    color:#d7d2c0;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:0.12em;
}
.stats-divider{
    color:rgba(201,155,69,0.9);
    font-size:22px;
    line-height:1;
}

.stats-panel-projekte{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    max-width:860px;
    margin:0 auto;
    padding:4px 8px;
    background:rgba(255,255,255,0.01);
    border:1px solid rgba(255,255,255,0.05);
    border-radius:14px;
    box-shadow:none;
}
.stat-card{
    background:transparent;
    border:none;
    padding:6px 8px;
    text-align:left;
    box-shadow:none;
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:38px;
}
.stat-card span{
    color:#c99b45;
    font-size:8px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:2px;
}
.stat-card h3{
    font-size:32px;
    margin:0 0 2px;
    line-height:1.05;
}
.stat-card p{
    color:#c7c7c7;
    font-size:10px;
    line-height:1.2;
    margin:0;
}
.projects-section{
    padding:28px 80px 80px;
    max-width:1320px;
    margin:0 auto;
}
.projects-intro{
    text-align:center;
    margin-bottom:48px;
}
.projects-intro span{
    color:#c99b45;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
    font-weight:800;
}
.projects-intro h2{
    font-size:30px;
    color:white;
    margin:16px 0 10px;
}
.projects-intro p{
    max-width:760px;
    margin:0 auto;
    color:#c9c9c9;
    font-size:16px;
    line-height:1.8;
}
.stats-panel-projekte{
    display:grid;
    grid-template-columns:repeat(3,minmax(200px,1fr));
    gap:22px;
    max-width:1200px;
    margin:0 auto;
    padding:60px 80px;
}
.stat-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:34px 28px;
    text-align:center;
    box-shadow:0 24px 54px rgba(0,0,0,0.25);
}
.stat-card span{
    display:block;
    color:#c99b45;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
    font-weight:800;
}
.stat-card h3{
    font-size:44px;
    margin:0 0 10px;
}
.stat-card p{
    color:#c7c7c7;
    font-size:15px;
    line-height:1.75;
}
.projects-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    grid-auto-rows:1fr;
    gap:16px;
    align-items:stretch;
}
.project-card{
    background:#0f1724;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,0.24);
    transition:transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}
.project-card:hover{
    transform:translateY(-4px) scale(1.03);
    border-color:rgba(209,169,60,0.45);
    box-shadow:0 28px 72px rgba(0,0,0,0.30), 0 0 20px rgba(209,169,60,0.14);
}
.project-card-thumb{
    position:relative;
    min-height:240px;
    overflow:hidden;
}
.project-card-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform 0.55s ease;
}
.project-card:hover .project-card-thumb img{
    transform:scale(1.05);
}
.project-card-info{
    padding:20px 18px 22px;
    display:flex;
    flex-direction:column;
    gap:10px;
    flex:1;
}
.project-card-number{
    display:block;
    color:#e0b836;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    margin-bottom:10px;
    font-weight:800;
}
.project-card-info h3{
    font-size:20px;
    margin:0;
    color:#f8f2df;
}
.project-card-description{
    color:#ccc3b3;
    font-size:14px;
    line-height:1.75;
    margin:0;
}
.project-card-location{
    color:#9e9e9e;
    font-size:13px;
    margin-top:auto;
}
.project-card-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:16px;
    color:#e0b836;
    font-size:13px;
    text-decoration:none;
    font-weight:700;
}
.project-card-link i{
    font-size:12px;
}
.projekte-cta{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:52px 42px;
    text-align:center;
    margin:0 80px 80px;
}
.projekte-cta h3{
    font-size:36px;
    margin-bottom:16px;
}
.projekte-cta p{
    color:#c7c7c7;
    margin-bottom:28px;
    max-width:760px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.8;
}
@media (max-width:1200px){
    .projects-grid{
        grid-template-columns:repeat(4,minmax(0,1fr));
    }
    .stats-panel-projekte{
        grid-template-columns:1fr 1fr;
    }
}
@media (max-width:992px){
    .projects-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
    .stats-panel-projekte{
        grid-template-columns:1fr 1fr;
    }
}
@media (max-width:768px){
    .projekte-hero{
        min-height:620px;
        padding:100px 26px 60px;
    }
    .projekte-hero h1{
        font-size:44px;
    }
    .projects-section,
    .stats-panel-projekte,
    .projekte-cta{
        padding-left:24px;
        padding-right:24px;
    }
    .projects-grid{
        grid-template-columns:1fr;
    }
    .stats-panel-projekte{
        grid-template-columns:1fr;
    }
}
@media (max-width:480px){
    .projekte-hero{
        padding:72px 18px 50px;
    }
    .projekte-hero h1{
        font-size:34px;
    }
    .projekte-hero p{
        font-size:15px;
    }
    .stat-card h3{
        font-size:36px;
    }
    .project-card-thumb{
        min-height:180px;
    }
    .projekte-cta{
        margin:0 18px 60px;
        padding:36px 24px;
    }
}

.projekte-hero-title,
.projekte-hero-title .hero-title-gold{
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
}

.projekte-hero-title .hero-title-gold{
    color:#d4af37 !important;
    font-size:15px !important;
    font-weight:800 !important;
    letter-spacing:3px !important;
    text-transform:uppercase !important;
    margin-bottom:10px !important;
}

.project-card-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:auto;
    padding-top:10px;
    font-size:14px;
    color:#bfbfbf;
}

.project-card-meta span{
    display:flex;
    align-items:center;
    gap:6px;
}
.project-card{
    text-decoration:none;
    color:inherit;
}
.project-gallery-hero{
    height:520px;
    background:url('images/projekte/komplettsanierung/hero.png') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    padding:120px 70px 60px;
}

.project-gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(4,8,15,0.92), rgba(4,8,15,0.45));
}

.project-gallery-content{
    position:relative;
    z-index:2;
    max-width:650px;
}

.project-gallery-content span{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:800;
}

.project-gallery-content h1{
    font-size:54px;
    margin:14px 0 18px;
}

.project-gallery-content p{
    color:#d1d1d1;
    font-size:17px;
    line-height:1.8;
    margin-bottom:28px;
}

.gallery-back-btn{
    color:white;
    text-decoration:none;
    background:#c99b45;
    padding:13px 22px;
    border-radius:6px;
    font-weight:700;
    display:inline-flex;
    gap:10px;
    align-items:center;
}

.project-gallery-hero{
    min-height:620px;
    background:url('images/projekte/komplettsanierung/hero.png') center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:flex-start;
    padding:150px 70px 90px;
    margin-bottom:-80px;
}

.project-gallery-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(to bottom, rgba(4,8,15,0.20) 0%, rgba(4,8,15,0.55) 55%, #020817 100%),
        linear-gradient(to right, rgba(4,8,15,0.92) 0%, rgba(4,8,15,0.45) 45%, rgba(4,8,15,0.15) 100%);
}

.project-card{
    text-decoration:none;
    color:inherit;
}

.social-nav{
    display:flex;
    align-items:center;
    gap:18px;
}

.social-nav a{
    font-size:24px;
    text-decoration:none;
    transition:all .3s ease;
}

.social-nav a:hover{
    transform:translateY(-3px) scale(1.1);
}

/* Facebook */
.social-nav a:nth-child(1){
    color:#1877F2;
}

/* Instagram */
.social-nav a:nth-child(2){
    color:#E4405F;
}

/* TikTok */
.social-nav a:nth-child(3){
    color:#FE2C55;
}

/* WhatsApp */
.social-nav a:nth-child(4){
    color:#25D366;
}

.project-description{
    padding:80px 20px;
    background:#081425;
}

.project-description h3{
    color:#d4af37;
    margin:35px 0 20px;
    font-size:1.3rem;
}

.project-description h2{
    color:#d4af37;
    margin-bottom:20px;
}

.project-description p,
.project-description li{
    color:#d1d1d1;
    line-height:1.8;
}

.project-description ul{
    margin:20px 0;
    padding-left:20px;
}

.project-details-layout{
    display:grid;
    grid-template-columns: auto auto;
    justify-content:center;
    gap:120px;
    max-width:900px;
    margin:0 auto;
}

.project-detail-box h2{
    color:#d4af37;
    margin-bottom:25px;
}

.project-detail-box p,
.project-detail-box li{
    color:#d1d1d1;
    font-size:18px;
    line-height:1.9;
}

.project-detail-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.project-status{
    grid-column:1 / -1;
    text-align:center;
    color:white;
    font-size:20px;
    margin-top:45px;
}

@media(max-width:768px){
    .project-details-layout{
        grid-template-columns:1fr;
        gap:35px;
    }

    .project-status{
        text-align:left;
        font-size:17px;
    }
}

.project-detail-box{
    min-width:250px;
}

.project-detail-box h2{
    font-size:32px;
    margin-bottom:20px;
}

.project-detail-box p,
.project-detail-box li{
    font-size:16px;
    line-height:1.7;
}

.project-details-layout{
    display:grid;
    grid-template-columns: auto auto;
    justify-content:center;
    gap:120px;
    max-width:900px;
    margin:0 auto;
}

.project-detail-box{
    min-width:250px;
}

.project-detail-box h2{
    font-size:32px;
    margin-bottom:20px;
}

.project-detail-box p,
.project-detail-box li{
    font-size:16px;
    line-height:1.7;
}

.project-status{
    grid-column:1 / -1;
    text-align:center;
    margin-top:-80px;
    font-size:15px;
}

.project-detail-box{
    min-width:250px;
}

.project-detail-box h2{
    font-size:32px;
    margin-bottom:20px;
}

.project-detail-box p,
.project-detail-box li{
    font-size:16px;
    line-height:1.7;
}

.project-status{
    grid-column:1 / -1;
    text-align:center;
    margin-top:20px;
    font-size:18px;
}

.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .navbar {
        padding: 14px 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transition: 0.4s ease;
        z-index: 999;
    }

    body.menu-open .nav-links {
        right: 0;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: 1px solid #c9a44c;
        color: #c9a44c;
        font-size: 22px;
        padding: 8px 11px;
        border-radius: 10px;
        z-index: 1000;
    }
.logo img {
    height: 150px;
    width: auto;
}

    .social-nav {
    display: flex;
    position: absolute;
    left: 20px;
    top: 105px;
    gap: 15px;
    z-index: 1001;
}

.menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 90px;

    background: none;
    border: 1px solid #c9a44c;
    color: #c9a44c;
    font-size: 22px;
    padding: 8px 11px;
    border-radius: 10px;
    z-index: 1001;
}

.social-nav a {
    font-size: 18px;
}
}

/* Innenbereich neue Seite */

.innen-hero {
    position: relative;
    min-height: 520px;
    background: url("images/innen/hero.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 120px 8%;
    overflow: hidden;
}

.innen-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4,8,12,0.92), rgba(4,8,12,0.55), rgba(4,8,12,0.15));
}

.innen-hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.innen-hero-content span,
.section-head span {
    color: #c9a44c;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 800;
}

.innen-hero-content h1 {
    color: #fff;
    font-size: 52px;
    line-height: 1.05;
    margin: 16px 0;
}

.innen-hero-content p {
    color: #d8d8d8;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.innen-services {
    padding: 90px 8%;
    background: #070b10;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-head h2 {
    color: #fff;
    font-size: 38px;
    margin: 14px 0;
}

.section-head p {
    color: #aaa;
    font-size: 17px;
}

.service-grid {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.service-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 10px 8px;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,164,76,0.55);
    background: rgba(201,164,76,0.06);
}

.service-card i {
    color: #c9a44c;
    font-size: 34px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #fff;
    font-size: 19px;
    margin-bottom: 10px;
}

.service-card p {
    color: #b8b8b8;
    font-size: 15px;
    line-height: 1.6;
}

.project-link-box {
    max-width: 1050px;
    margin: 28px auto 38px;
    padding: 22px 30px;
    background: #08111c;
    border: none    border-radius14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.project-link-box i {
    color: #c9a44c;
    font-size: 26px;
    margin-bottom: 8px;
}

.project-link-box h2 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 6px;
}

.project-link-box p {
    color: #aaa;
    font-size: 15px;
}

.project-link-box .btn {
    padding: 13px 22px;
    font-size: 14px;
    white-space: nowrap;
}

/* Mobile Innenbereich */
@media (max-width: 768px) {
    .innen-hero {
        min-height: 620px;
        padding: 170px 24px 70px;
        align-items: flex-end;
    }

    .innen-hero-content h1 {
        font-size: 40px;
    }

    .innen-hero-content p {
        font-size: 16px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .innen-services {
    padding: 55px 8% 45px;
    background: #05090d;
}

    .section-head h2 {
        font-size: 30px;
    }

    .project-link-box {
        margin: 25px 18px;
        padding: 28px;
        flex-direction: column;
        align-items: flex-start;
    }

    .project-link-box .btn {
        width: 100%;
        text-align: center;
    }
}

.innen-services {
    padding: 15px 8% 20px;

    background: linear-gradient(
        to bottom,
        #05090d 0%,
        #05090d 60%,
        #07111c 100%
    );
}

.gallery-grid {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 210px);
    gap: 12px;
}

.gallery-item {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item:nth-child(7) {
    grid-column: 4;
    grid-row: 1 / span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-link-box {
    max-width: 1350px;
    padding: 28px 40px;
}

.project-link-box h2 {
    font-size: 24px;
}

.project-link-box i {
    font-size: 30px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 260px;
    }
}

.compact-project-link {
    max-width: 1000px;
    padding: 18px 28px;
}

.compact-project-link h2 {
    font-size: 20px;
    margin-bottom: 4px;
}

.compact-project-link p {
    font-size: 14px;
}

.compact-project-link .btn {
    padding: 12px 20px;
    font-size: 13px;
}

.innen-services,
.gallery-section {
    background: #08111c !important;
}

.aussen-hero {
    background: url("images/aussen/hero.jpeg") center/cover no-repeat;
}

.service-tags small{
    display:flex;
    align-items:center;
    gap:9px;
}

.service-tags small::before{
    content:none;
}

.service-tags i{
    color:#d6a849;
    font-size:17px;
    width:18px;
}

.service-tags{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:16px 22px;
    max-width:500px;
}

.service-tags small{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
}

.service-content{
    justify-content:flex-end;
    padding:40px 16px 20px;
}

.service-tags{
    display:grid;
    grid-template-columns:repeat(3, max-content);
    gap:14px 34px;
    max-width:520px;
    margin-top:18px;
    margin-bottom:22px;
}

.service-tags small{
    font-size:13px;
    gap:7px;
    white-space:nowrap;
}

.service-tags i{
    font-size:15px;
    width:16px;
}

.service-content b{
    font-size:12px;
    padding:10px 8px;
    margin-top:2px;
}

.aussen-leistungen .service-grid .service-card{
    height:150px !important;
    min-height:150px !important;
    max-height:150px !important;
    padding:24px !important;
}

section.aussen-leistungen div.service-grid div.service-card{
    height:150px !important;
    min-height:150px !important;
    max-height:150px !important;
}

.small-services .service-card{
    height:180px !important;
    min-height:180px !important;
    max-height:180px !important;
    padding:24px !important;
    display:block !important;
    position:relative !important;
}

.small-services .service-grid{
    align-items:start !important;
}


@media (max-width: 768px){

    .showcase{
        padding:35px 20px 50px;
    }

    .section-title h2{
        font-size:28px;
        line-height:1.2;
    }

    .service-split{
        grid-template-columns:1fr;
        gap:22px;
    }

    .service-card{
        height:430px;
    }

    .service-content{
        padding:28px 22px;
        max-width:100%;
    }

    .service-content h3{
        font-size:26px;
    }

    .service-tags{
        grid-template-columns:1fr 1fr;
        gap:12px 18px;
        max-width:100%;
    }

    .service-tags small{
        font-size:12px;
    }
}

@media (max-width:768px){
    .hero{
        padding-top:130px !important;
    }
}

@media (max-width: 768px) {
    .social-nav {
        display: flex !important;
        position: fixed !important;
        top: 98px !important;
        left: 18px !important;
        gap: 18px !important;
        z-index: 9999 !important;
    }

    .social-nav a {
        display: inline-flex !important;
        font-size: 22px !important;
    }
}
@media (max-width: 768px) {

    .logo {
        margin-top: 0 !important;
    }

    .social-nav {
        margin-top: 25px !important;
    }

    .menu-toggle {
        margin-top: 25px !important;
    }

}

@media (max-width: 768px) {

    .about-page {
        padding-top: 185px !important;
    }

    .innen-hero,
    .aussen-hero {
        padding-top: 185px !important;
        min-height: 650px !important;
    }

    .projekte-hero {
        padding-top: 185px !important;
        min-height: 650px !important;
    }

    .leistungen-page {
        padding-top: 160px !important;
    }

    .contact {
        padding-top: 185px !important;
    }
}

@media (max-width: 480px) {

    .about-page {
        padding-top: 185px !important;
    }

    .innen-hero,
    .aussen-hero,
    .projekte-hero {
        padding-top: 185px !important;
    }

    .leistungen-page {
        padding-top: 160px !important;
    }

    .contact {
        padding-top: 185px !important;
    }
}

@media (max-width: 768px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
        gap: 10px !important;
    }

    .gallery-item,
    .gallery-item:nth-child(7) {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 220px !important;
    }

    .gallery-item img {
        height: 100% !important;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 210px !important;
    }

    .hero-content {
        margin-top: 20px !important;
    }
}