/* ==========================================================
   SICHERHEITSDIENST ADLER
   PREMIUM WEBSITE
   Version 1.0
========================================================== */


/* ==========================================================
   RESET
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#0B0B0B;

    color:#FFFFFF;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

section{

    padding:120px 0;

}

.container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

/* ==========================================================
   VARIABLES
========================================================== */

:root{

    --gold:#D4AF37;

    --black:#0B0B0B;

    --dark:#111111;

    --gray:#BEBEBE;

    --white:#FFFFFF;

    --transition:.35s;

    --radius:12px;

}

/* ==========================================================
   SECTION TITLE
========================================================== */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--gold);

    letter-spacing:4px;

    font-size:14px;

    text-transform:uppercase;

    display:block;

    margin-bottom:15px;

}

.section-title h2{

    font-size:48px;

    margin-bottom:20px;

}

.section-title p{

    max-width:750px;

    margin:auto;

    color:var(--gray);

    font-size:18px;

}

/* ==========================================================
   HEADER
========================================================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:rgba(8,8,8,.82);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(212,175,55,.15);

    transition:.4s;

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo{

    display:flex;

    align-items:center;

    gap:18px;

}

.logo img{

    width:62px;

}

.logo-title{

    color:#cccccc;

    font-size:12px;

    letter-spacing:3px;

    text-transform:uppercase;

}

.logo h2{

    color:var(--gold);

    font-size:28px;

    letter-spacing:2px;

}

/* ==========================================================
   NAVIGATION
========================================================== */

nav ul{

    display:flex;

    align-items:center;

    gap:40px;

}

nav a{

    color:white;

    font-weight:500;

    position:relative;

    transition:var(--transition);

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:var(--transition);

}

nav a:hover{

    color:var(--gold);

}

nav a:hover::after{

    width:100%;

}

.menu-button{

    display:none;

    color:white;

    font-size:26px;

    cursor:pointer;

}

/* ==========================================================
   HERO
========================================================== */

#hero{

    position:relative;

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,.82),rgba(0,0,0,.88)),
    url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.2),
        rgba(0,0,0,.45)
    );

}

.hero-content{

    position:relative;

    z-index:2;

    width:900px;

    padding:20px;

}

.hero-subtitle{

    color:var(--gold);

    letter-spacing:6px;

    font-size:14px;

    text-transform:uppercase;

}

.hero-content h1{

    font-size:78px;

    line-height:1.15;

    margin:30px 0;

}

.hero-content p{

    color:#d5d5d5;

    font-size:21px;

    max-width:700px;

    margin:auto;

    margin-bottom:50px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

/* ==========================================================
   PREMIUM BUTTONS
========================================================== */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    background:var(--gold);

    color:var(--black);

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    border:2px solid var(--gold);

    box-shadow:0 10px 30px rgba(212,175,55,.25);

}

.btn-primary:hover{

    background:transparent;

    color:var(--gold);

    transform:translateY(-4px);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    border-radius:50px;

    border:2px solid rgba(255,255,255,.25);

    color:#ffffff;

    transition:var(--transition);

}

.btn-secondary:hover{

    border-color:var(--gold);

    color:var(--gold);

    transform:translateY(-4px);

}

/* ==========================================================
   SCROLL DOWN
========================================================== */

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    color:var(--gold);

    font-size:24px;

    animation:scrollDown 2s infinite;

    z-index:5;

}

@keyframes scrollDown{

    0%{

        transform:translate(-50%,0);

        opacity:0;

    }

    50%{

        opacity:1;

    }

    100%{

        transform:translate(-50%,15px);

        opacity:0;

    }

}

/* ==========================================================
   WHY ADLER
========================================================== */

#why{

    background:#0d0d0d;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:#131313;

    padding:45px 30px;

    border-radius:18px;

    text-align:center;

    border:1px solid rgba(212,175,55,.12);

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.why-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:3px;

    background:var(--gold);

    transition:.5s;

}

.why-card:hover::before{

    left:0;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:0 15px 40px rgba(0,0,0,.45);

}

.why-card i{

    font-size:48px;

    color:var(--gold);

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.why-card p{

    color:var(--gray);

}

/* ==========================================================
   SERVICES
========================================================== */

#services{

    background:#111111;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:#161616;

    padding:40px;

    border-radius:18px;

    border:1px solid rgba(212,175,55,.12);

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.service-card::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:0;

    background:linear-gradient(
        transparent,
        rgba(212,175,55,.08)
    );

    transition:.4s;

}

.service-card:hover::after{

    height:100%;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

}

.service-card i{

    font-size:50px;

    color:var(--gold);

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:20px;

    font-size:24px;

}

.service-card p{

    color:var(--gray);

}

/* ==========================================================
   STATS
========================================================== */

#stats{

    background:#0a0a0a;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    text-align:center;

    padding:45px;

    border:1px solid rgba(212,175,55,.15);

    border-radius:18px;

    background:#131313;

    transition:var(--transition);

}

.stat-box:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.stat-box h2{

    color:var(--gold);

    font-size:52px;

    margin-bottom:15px;

}

.stat-box p{

    color:var(--gray);

    font-size:18px;

}

/* ==========================================================
   ABOUT
========================================================== */

#about{

    background:#101010;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:20px;

    border:2px solid rgba(212,175,55,.18);

    transition:.4s;

}

.about-image:hover img{

    transform:scale(1.03);

    border-color:var(--gold);

}

.about-content span{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:14px;

}

.about-content h2{

    font-size:46px;

    margin:20px 0 30px;

}

.about-content p{

    color:var(--gray);

    margin-bottom:22px;

    font-size:17px;

}

.about-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-top:40px;

}

.about-list div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:500;

}

.about-list i{

    width:34px;

    height:34px;

    border-radius:50%;

    background:rgba(212,175,55,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--gold);

}

/* ==========================================================
   CTA
========================================================== */

#cta{

    padding:140px 0;

    background:
    linear-gradient(rgba(0,0,0,.82),rgba(0,0,0,.82)),
    url("../images/cta.jpg");

    background-size:cover;

    background-position:center;

    text-align:center;

}

.cta-box{

    max-width:900px;

    margin:auto;

}

.cta-box span{

    color:var(--gold);

    letter-spacing:4px;

    text-transform:uppercase;

}

.cta-box h2{

    font-size:50px;

    margin:25px 0;

}

.cta-box p{

    color:#d6d6d6;

    margin-bottom:45px;

    font-size:18px;

}

/* ==========================================================
   PREMIUM EFFECT
========================================================== */

.service-card,
.why-card,
.stat-box{

    backdrop-filter:blur(10px);

}

.service-card:hover{

    box-shadow:
    0 20px 45px rgba(0,0,0,.55);

}

.why-card:hover{

    box-shadow:
    0 20px 45px rgba(0,0,0,.55);

}

.stat-box:hover{

    box-shadow:
    0 20px 45px rgba(0,0,0,.55);

}

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#090909;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#b8932f;

}

/* ==========================================================
   SELECTION
========================================================== */

::selection{

    background:var(--gold);

    color:#000;

}

/* ==========================================================
   CONTACT
========================================================== */

#contact{

    background:#0b0b0b;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

    align-items:start;

}

.contact-info{

    background:#131313;

    padding:45px;

    border-radius:18px;

    border:1px solid rgba(212,175,55,.12);

}

.contact-info h3{

    font-size:30px;

    color:var(--gold);

    margin-bottom:35px;

}

.contact-item{

    display:flex;

    gap:20px;

    margin-bottom:35px;

    align-items:flex-start;

}

.contact-item:last-child{

    margin-bottom:0;

}

.contact-item i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--gold);

    font-size:22px;

}

.contact-item h4{

    margin-bottom:8px;

    font-size:18px;

}

.contact-item p{

    color:var(--gray);

    line-height:1.8;

}

/* ==========================================================
   CONTACT FORM
========================================================== */

.contact-form{

    background:#131313;

    padding:45px;

    border-radius:18px;

    border:1px solid rgba(212,175,55,.12);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    background:#1a1a1a;

    border:1px solid rgba(212,175,55,.12);

    color:white;

    padding:18px 20px;

    border-radius:10px;

    font-size:16px;

    font-family:'Poppins',sans-serif;

    transition:.35s;

}

.contact-form textarea{

    resize:vertical;

    min-height:180px;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:var(--gold);

    box-shadow:0 0 0 4px rgba(212,175,55,.08);

}

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#888;

}

/* ==========================================================
   MAP
========================================================== */

#map{

    padding:0;

}

#map iframe{

    width:100%;

    height:500px;

    border:0;

    filter:grayscale(100%) invert(92%) contrast(92%);

}

/* ==========================================================
   FOOTER
========================================================== */

footer{

    background:#080808;

    padding:80px 0 0;

    border-top:1px solid rgba(212,175,55,.15);

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:85px;

    margin-bottom:20px;

}

.footer-grid h3{

    color:var(--gold);

    margin-bottom:20px;

}

.footer-grid h4{

    color:white;

    margin-bottom:20px;

}

.footer-grid p{

    color:#bdbdbd;

    margin-bottom:12px;

}

.footer-grid ul li{

    margin-bottom:14px;

}

.footer-grid a{

    color:#bdbdbd;

    transition:.3s;

}

.footer-grid a:hover{

    color:var(--gold);

    padding-left:6px;

}

.footer-bottom{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.06);

    text-align:center;

    padding:25px;

    color:#8d8d8d;

    font-size:15px;

}

/* ==========================================================
   BACK TO TOP
========================================================== */

#topButton{

    position:fixed;

    right:35px;

    bottom:35px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--gold);

    color:black;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    transition:.35s;

    z-index:999;

    box-shadow:0 12px 25px rgba(212,175,55,.30);

}

#topButton:hover{

    transform:translateY(-6px);

    background:#e2bf52;

}

/* ==========================================================
   SIMPLE FADE ANIMATION
========================================================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-content{

    animation:fadeUp 1.1s ease;

}

.section-title{

    animation:fadeUp .9s ease;

}

/* ==========================================================
   RESPONSIVE - LARGE TABLET
========================================================== */

@media(max-width:1200px){

    .container{

        width:94%;

    }

    .hero-content h1{

        font-size:62px;

    }

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/* ==========================================================
   RESPONSIVE - TABLET
========================================================== */

@media(max-width:992px){

    section{

        padding:90px 0;

    }

    header .container{

        height:80px;

    }

    nav{

        display:none;

    }

    .menu-button{

        display:block;

    }

    .hero-content{

        width:100%;

    }

    .hero-content h1{

        font-size:54px;

    }

    .hero-content p{

        font-size:18px;

    }

    .about-container{

        grid-template-columns:1fr;

    }

    .contact-wrapper{

        grid-template-columns:1fr;

    }

}

/* ==========================================================
   RESPONSIVE - MOBILE
========================================================== */

@media(max-width:768px){

    .hero-content h1{

        font-size:42px;

    }

    .hero-content p{

        font-size:17px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

        max-width:320px;

    }

    .why-grid{

        grid-template-columns:1fr;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .about-list{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-logo{

        margin:auto auto 20px;

    }

    .section-title h2{

        font-size:34px;

    }

    .cta-box h2{

        font-size:34px;

    }

}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media(max-width:480px){

    .hero-content h1{

        font-size:34px;

    }

    .logo img{

        width:48px;

    }

    .logo h2{

        font-size:22px;

    }

    .section-title h2{

        font-size:28px;

    }

    .contact-info,
    .contact-form{

        padding:30px;

    }

    #topButton{

        width:48px;

        height:48px;

        right:20px;

        bottom:20px;

    }

}

/* ==========================================================
   HOVER EFFECTS
========================================================== */

img{

    transition:.4s;

}

img:hover{

    transform:scale(1.02);

}

.service-card,
.why-card,
.stat-box,
.contact-info,
.contact-form{

    transition:.35s;

}

/* ==========================================================
   SMOOTH SHADOW
========================================================== */

.service-card:hover,
.why-card:hover,
.stat-box:hover,
.contact-info:hover,
.contact-form:hover{

    box-shadow:
    0 20px 50px rgba(0,0,0,.45);

}

/* ==========================================================
   INPUT AUTOFILL FIX
========================================================== */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus{

    -webkit-text-fill-color:white;

    transition:background-color 9999s;

}

/*=========================
ANIMATIONS
=========================*/

.hidden{

opacity:0;

transform:translateY(70px);

transition:all .8s ease;

}

.show{

opacity:1;

transform:translateY(0);

}

/*=========================
STICKY HEADER
=========================*/

header.sticky{

background:#050505;

box-shadow:0 8px 30px rgba(0,0,0,.55);

}

/*=========================
MOBILE MENU
=========================*/

@media(max-width:992px){

nav{

position:fixed;

top:80px;

left:-100%;

width:100%;

background:#111;

transition:.4s;

padding:35px;

}

nav.active{

left:0;

}

nav ul{

flex-direction:column;

gap:25px;

}

}

/*==========================
LEGAL PAGES
==========================*/

.legal-hero{

padding-top:180px;

padding-bottom:90px;

text-align:center;

background:

linear-gradient(rgba(0,0,0,.85),rgba(0,0,0,.88)),

url("../images/hero.jpg");

background-size:cover;

background-position:center;

}

.legal-hero h1{

font-size:58px;

color:white;

margin-bottom:20px;

}

.legal-hero p{

color:#d6d6d6;

font-size:19px;

}

.legal-content{

background:#0d0d0d;

padding:90px 0;

}

.legal-box{

background:#151515;

border:1px solid rgba(212,175,55,.12);

border-radius:18px;

padding:45px;

margin-bottom:35px;

}

.legal-box h2{

color:var(--gold);

margin-bottom:25px;

font-size:28px;

}

.legal-box p{

color:#d0d0d0;

margin-bottom:18px;

line-height:1.9;

}

.legal-box ul{

margin-left:25px;

margin-top:15px;

}

.legal-box li{

margin-bottom:12px;

color:#d0d0d0;

list-style:disc;

}

.legal-box strong{

color:white;

}

/*======================================
FORM ROW
======================================*/

.form-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

margin-bottom:20px;

}

.contact-form select{

width:100%;

background:#1a1a1a;

border:1px solid rgba(212,175,55,.12);

color:white;

padding:18px;

border-radius:10px;

font-size:16px;

font-family:'Poppins',sans-serif;

}

.contact-form select:focus{

outline:none;

border-color:var(--gold);

}

.checkbox{

display:flex;

align-items:flex-start;

gap:12px;

margin:10px 0 25px;

font-size:14px;

color:#ccc;

line-height:1.7;

}

.checkbox input{

margin-top:5px;

}

.checkbox a{

color:var(--gold);

text-decoration:none;

}

.checkbox a:hover{

text-decoration:underline;

}

#formMessage{

margin-top:25px;

padding:18px;

border-radius:10px;

display:none;

font-weight:500;

}

#formMessage.success{

display:block;

background:#14351d;

border:1px solid #2f8f46;

color:#d8ffe0;

}

#formMessage.error{

display:block;

background:#3a1515;

border:1px solid #b33;

color:#ffd8d8;

}

@media(max-width:768px){

.form-row{

grid-template-columns:1fr;

}

}

/*======================================
GOOGLE MAPS
======================================*/

.map-section{

margin-top:80px;

text-align:center;

}

.map-section h2{

font-size:36px;

margin-bottom:15px;

color:var(--gold);

}

.map-section p{

color:#cfcfcf;

margin-bottom:35px;

}

.map-container{

overflow:hidden;

border-radius:18px;

border:2px solid rgba(212,175,55,.25);

box-shadow:0 20px 50px rgba(0,0,0,.45);

}

.map-container iframe{

display:block;

width:100%;

height:450px;

}

/*======================================
404 PAGE
======================================*/

.error-box{

text-align:center;

padding:60px 40px;

background:#121212;

border:1px solid rgba(212,175,55,.18);

border-radius:20px;

margin:50px 0;

}

.error-icon{

font-size:90px;

color:var(--gold);

margin-bottom:25px;

}

.error-box h2{

font-size:38px;

margin-bottom:20px;

}

.error-box p{

color:#cfcfcf;

margin-bottom:20px;

line-height:1.8;

}

.error-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

margin-top:35px;

}

.btn-secondary{

display:inline-flex;

align-items:center;

gap:10px;

padding:16px 34px;

border:2px solid var(--gold);

border-radius:10px;

color:var(--gold);

text-decoration:none;

font-weight:600;

transition:.3s;

}

.btn-secondary:hover{

background:var(--gold);

color:#111;

}

.legal-box ul{

margin-top:20px;

}

.legal-box ul li{

list-style:none;

margin-bottom:15px;

font-size:16px;

}

.legal-box ul li i{

color:var(--gold);

margin-right:10px;

}

/*======================================
MOBILE MENU
======================================*/

.menu-button{
    display:none;
    font-size:28px;
    color:var(--gold);
    cursor:pointer;
}

@media (max-width: 992px){

    .menu-button{
        display:block;
    }

    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#111;
        display:none;
        border-top:1px solid rgba(212,175,55,.2);
        z-index:999;
    }

    nav.active{
        display:block;
    }

    nav ul{
        display:flex;
        flex-direction:column;
        padding:20px;
        gap:18px;
    }

}
/* ==========================================================
   END OF FILE
========================================================== */