body{
    margin: 0;
    min-height: 100%;
    font-family: 'Poppins', sans-serif;
    color: #fff;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.75)
        ),
        url("/images/background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero{
    height: 100vh-75px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 8% 75px;
    box-sizing: border-box;
    min-height: 420px;
    margin: 0 auto;
}

.hero-content{
    max-width: 600px;
}

.hero h1{
    font-family:'Black Ops One', sans-serif;
    font-size:clamp(70px, 8vw, 80px);
    font-weight:700;
    color:#fff;
    line-height:0.95;
    letter-spacing:5px;
    margin:0;
    text-shadow:0 8px 30px rgba(0,0,0,0.35);
    text-transform: uppercase;
}

.hero h2,
.hero a{
    font-family:'Poppins', sans-serif;
    font-size:clamp(15px, 2.5vw, 20px);
    font-weight:300;
    color:rgba(216, 216, 216, 0.9);
    margin:10px 0 25px;
    letter-spacing:1px;
    text-shadow:0 4px 15px rgba(0,0,0,0.35);
}

.hero p{
    font-family:'Poppins', sans-serif;
    font-size:clamp(15px, 1.3vw, 20px);
    font-weight:400;
    color:rgba(255,255,255,0.8);
    max-width:520px;
    line-height:1.8;
    margin: 0 auto;    
}

#typing{
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease;
}

#typing.fade{
    opacity: 0;
    transform: translateY(10px);
}

/* WhatsApp Icon */

.whatsapp-float,
.call-float{
    display: none;
}

/* Home Page Buttons */ 

.service-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:35px;
}

.glass-btn{
    display:flex;
    align-items:center;
    gap:12px;

    padding:12px 20px;

    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:500;

    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,0.25);
    border-radius:50px;

    box-shadow:
        0 8px 24px rgba(0,0,0,.2);

    transition:.3s ease;
}

.glass-btn i{
    font-size:22px;
}

.glass-btn:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,0.2);
    border-color:rgba(255,255,255,0.4);
    box-shadow:0 12px 28px rgba(0,0,0,.35);
}

.glass-btn:active{
    transform:scale(.97);
}

/* Glass notes on services */

.glass-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.glass-paper{
    width:min(700px,90%);
    max-height:80vh;
    overflow:auto;

    padding:35px;

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.25);
    border-radius:20px;

    color:white;
}

.glass-paper::-webkit-scrollbar {
    width: 8px;
}

.glass-paper::-webkit-scrollbar-track {
    background: rgba(255,255,255,.05);
    border-radius: 10px;
}

.glass-paper::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.3);
    border-radius: 10px;
}

.glass-paper::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,.5);
}

.close-btn{
    float:right;
    background:none;
    border:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

.footer{
    bottom: 0;
    left: 0;
    font-size: 18px;
    display: flex;
    justify-content: center;
}

#modalTitle {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

#typingContent{
    text-align: left;
    margin-top:20px;
    line-height:2;
    white-space:pre-line;
}

.location-link{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;

    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

/* Tablets and Mobiles */
@media (max-width: 768px){
    body{
        min-height: 100vh;
        background:
            linear-gradient(
                rgba(0, 0, 0, 0.75),
                rgba(0, 0, 0, 0.75)
            ),
            url("/images/background-mobile.jpg");

        background-color: #000000;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    .hero{
        max-height: 100vh;
        padding: 100px 5% 75px;
        text-align: center;
        box-sizing: border-box;
    }

    .hero h1{
        font-size:45px;   
    }

    .hero h2{
        font-size:14px;  
    }

    .hero p{
        font-size:18px;   
    }

    .hero-btn{
        width:100%;
        max-width:200px;
        height:50px;

        margin-top:30px;
        padding:0;

        justify-content:center;

        font-size:14px;
        font-weight:600;

        border-radius:999px;
    }

    .hero-btn i,
    .phone-icon{
        font-size:14px;
    }

        /* Floating Call Button */
    .call-float{
        display: flex;

        position: fixed;
        bottom: 88px;
        right: 18px;

        width: 55px;
        height: 55px;

        justify-content: center;
        align-items: center;

        color: #fff;
        text-decoration: none;
        font-size: 24px;

        /* Glass Effect */
        background: rgba(255,255,255,0.12);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        border: 1px solid rgba(255,255,255,0.25);
        border-radius: 50%;

        box-shadow:
            0 8px 24px rgba(0,0,0,.25),
            inset 0 1px 1px rgba(255,255,255,.15);

        z-index: 9999;
        transition: all .3s ease;
    }

    .call-float:hover{
        transform: translateY(-3px) scale(1.05);
        background: rgba(255,255,255,0.20);
        border-color: rgba(255,255,255,0.4);
        box-shadow:
            0 12px 28px rgba(0,0,0,.35),
            inset 0 1px 1px rgba(255,255,255,.2);
    }

    .whatsapp-float{
        display: flex;

        position: fixed;
        bottom: 18px;
        right: 18px;

        width: 55px;
        height: 55px;

        background: #25D366;
        color: #fff;

        border-radius: 50%;
        justify-content: center;
        align-items: center;

        font-size: 40px;
        text-decoration: none;

        box-shadow: 0 8px 25px rgba(0,0,0,.3);
        z-index: 9999;
        transition: .3s ease;
    }

    .whatsapp-float:hover{
        transform: scale(1.1);
    }

        .service-buttons{
        flex-direction:column;
        align-items:center;
    }

    .glass-btn{
        width:90%;
        justify-content:center;
        font-size:17px;
    }

    .footer{
    font-size: 13px;
    }

}
