@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@600;700;800&display=swap');

:root{
    --yellow:#FFC107;
    --yellow-dark:#E0A800;
    --black:#111111;
    --graphite:#1D1D1D;
    --white:#FFFFFF;
    --light:#F6F6F6;
    --muted:#696969;
    --whatsapp:#25D366;
    --bottom-height:82px;
}

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

html,
body{
    width:100%;
    min-height:100%;
}

body{
    overflow-x:hidden;
    color:var(--white);
    background:var(--black);
    font-family:Inter,Arial,sans-serif;
}

body.modal-open{
    overflow:hidden;
}

a{
    color:inherit;
    text-decoration:none;
}

button{
    font:inherit;
}

/* Logo only at the top */
.top-logo{
    position:fixed;
    top:0;
    left:0;
    z-index:30;
    width:100%;
    padding:18px 22px 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(to bottom,rgba(0,0,0,.82),rgba(0,0,0,0));
    pointer-events:none;
}

.top-logo img{
    width:600px;
    max-width:88vw;
    max-height:auto;
    object-fit:contain;
    display:block;
}

/* Full screen video */
.hero{
    position:relative;
    min-height:100svh;
    padding:190px 7vw calc(var(--bottom-height) + 90px);
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero video,
.shade{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.hero video{
    object-fit:cover;
}

.shade{
    background:
        linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.56) 50%,rgba(0,0,0,.10)),
        linear-gradient(0deg,rgba(0,0,0,.82),transparent 52%);
}

.hero-copy{
    position:relative;
    z-index:2;
    width:min(790px,100%);
}

.eyebrow,
.panel-label{
    color:var(--yellow);
    font-size:.78rem;
    font-weight:800;
    letter-spacing:.18em;
}

.hero h1,
.modal h2,
.services-grid h3{
    font-family:Montserrat,Arial,sans-serif;
}

.hero h1{
    margin:20px 0;
    font-size:clamp(4rem,8vw,8rem);
    line-height:.94;
    letter-spacing:-.035em;
}

.hero h1 span{
    color:var(--yellow);
}

.hero-copy > p:last-of-type{
    max-width:650px;
    color:#E4E4E4;
    font-size:1.12rem;
    line-height:1.7;
}

.hero-actions{
    margin-top:30px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.btn{
    min-height:54px;
    padding:14px 23px;
    border:1px solid transparent;
    border-radius:6px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

.btn.primary{
    color:#111;
    background:var(--yellow);
}

.btn.secondary{
    color:#fff;
    border-color:rgba(255,255,255,.55);
    background:rgba(0,0,0,.25);
    backdrop-filter:blur(8px);
}

.video-controls{
    position:absolute;
    z-index:3;
    left:7vw;
    bottom:calc(var(--bottom-height) + 24px);
    display:flex;
    gap:10px;
}

.video-controls button{
    padding:10px 15px;
    border:1px solid rgba(255,255,255,.35);
    border-radius:999px;
    color:#fff;
    background:rgba(0,0,0,.48);
    cursor:pointer;
    backdrop-filter:blur(10px);
}

/* App-style fixed bottom menu */
.bottom-nav{
    position:fixed;
    left:50%;
    bottom:max(12px,env(safe-area-inset-bottom));
    z-index:45;
    width:min(680px,calc(100% - 24px));
    min-height:var(--bottom-height);
    padding:9px 10px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:24px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:5px;
    background:rgba(18,18,18,.86);
    box-shadow:0 18px 55px rgba(0,0,0,.45);
    backdrop-filter:blur(16px);
    transform:translateX(-50%);
}

.bottom-nav button,
.bottom-nav a{
    min-width:0;
    padding:8px 5px;
    border:0;
    border-radius:17px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    color:#fff;
    background:transparent;
    cursor:pointer;
    font-size:.72rem;
    font-weight:700;
}

.bottom-nav button:hover,
.bottom-nav a:hover{
    color:#111;
    background:var(--yellow);
}

.bottom-nav .icon{
    color:var(--yellow);
    font-size:1.28rem;
    line-height:1;
}

.bottom-nav button:hover .icon,
.bottom-nav a:hover .icon{
    color:#111;
}

/* Modal panels */
.modal{
    position:fixed;
    inset:0;
    z-index:100;
    visibility:hidden;
    opacity:0;
    transition:.22s ease;
}

.modal.open{
    visibility:visible;
    opacity:1;
}

.modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.78);
    backdrop-filter:blur(10px);
}

.modal-card{
    position:absolute;
    top:50%;
    left:50%;
    width:min(740px,calc(100% - 30px));
    max-height:calc(100svh - 36px);
    overflow:auto;
    padding:50px;
    border-radius:14px;
    color:#222;
    background:#fff;
    box-shadow:0 35px 100px rgba(0,0,0,.35);
    transform:translate(-50%,-46%);
    transition:transform .22s ease;
}

.modal.open .modal-card{
    transform:translate(-50%,-50%);
}

.modal-card.wide{
    width:min(1100px,calc(100% - 30px));
}

.close{
    position:absolute;
    top:13px;
    right:16px;
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    color:#222;
    background:#f1f1f1;
    cursor:pointer;
    font-size:1.9rem;
    line-height:1;
}

.modal h2{
    margin:12px 0 22px;
    font-size:clamp(2.3rem,5vw,4.4rem);
    line-height:1;
}

.modal-card > p:not(.panel-label){
    margin-top:12px;
    color:var(--muted);
    line-height:1.75;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.services-grid > div,
.contact-grid a{
    padding:22px;
    border:1px solid #DEDEDE;
    border-radius:9px;
    background:var(--light);
}

.service-icon{
    color:var(--yellow-dark);
    font-size:1.4rem;
}

.services-grid h3{
    margin:26px 0 10px;
    font-size:1.25rem;
}

.services-grid p{
    color:var(--muted);
    line-height:1.58;
    font-size:.92rem;
}

.contact-grid{
    margin-top:25px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.contact-grid span,
.contact-grid strong{
    display:block;
}

.contact-grid span{
    color:var(--yellow-dark);
    font-size:.73rem;
    font-weight:800;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.contact-grid strong{
    margin-top:6px;
    overflow-wrap:anywhere;
}

/* Tablet */
@media(max-width:850px){
    .top-logo img{
        width:380px;
    }

    .hero{
        padding-top:175px;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:600px){
    :root{
        --bottom-height:74px;
    }

    .top-logo{
        padding-top:14px;
    }

    .top-logo img{
        width:310px;
        max-height:92px;
    }

    .hero{
        min-height:100svh;
        padding:150px 22px calc(var(--bottom-height) + 105px);
        align-items:flex-end;
    }

    .shade{
        background:
            linear-gradient(90deg,rgba(0,0,0,.62),rgba(0,0,0,.26)),
            linear-gradient(0deg,rgba(0,0,0,.92),rgba(0,0,0,.08) 70%);
    }

    .hero h1{
        font-size:clamp(3.1rem,15vw,4.7rem);
    }

    .hero-copy > p:last-of-type{
        font-size:.98rem;
    }

    .hero-actions{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }

    .video-controls{
        left:22px;
        bottom:calc(var(--bottom-height) + 24px);
    }

    .video-controls button{
        padding:9px 12px;
        font-size:.8rem;
    }

    .bottom-nav{
        bottom:max(7px,env(safe-area-inset-bottom));
        width:calc(100% - 14px);
        padding:7px 6px;
        border-radius:20px;
    }

    .bottom-nav button,
    .bottom-nav a{
        font-size:.65rem;
    }

    .bottom-nav .icon{
        font-size:1.17rem;
    }

    .modal-card{
        padding:46px 23px 28px;
    }

    .services-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }
}


/* Social media pills below the main action buttons */
.social-pills{
    margin-top:18px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.social-pill{
    min-height:44px;
    padding:11px 20px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    color:#111;
    background:#9BFF22;
    box-shadow:0 10px 28px rgba(155,255,34,.28);
    font-weight:800;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.social-pill:hover{
    transform:translateY(-2px);
    background:#B6FF5A;
    box-shadow:0 14px 34px rgba(155,255,34,.40);
}

.social-pill i{
    font-size:1.05rem;
}

@media(max-width:600px){
    .social-pills{
        justify-content:flex-start;
    }

    .social-pill{
        min-width:150px;
        padding:10px 18px;
        font-size:.9rem;
    }
}
