body.uno{
    margin:0;
    padding:0;
    overflow-x:hidden;
    min-height:100vh;
    background:#041426;
    position:relative;
}

body.uno::before{
    content:"";
    position:fixed;
    inset:0;
    z-index:-2;
    background:
        linear-gradient(120deg, transparent 20%, rgba(0,120,255,.18) 35%, transparent 50%),
        linear-gradient(240deg, transparent 25%, rgba(0,200,255,.12) 45%, transparent 65%),
        linear-gradient(180deg, #03101f 0%, #08213d 50%, #020b15 100%);
    background-size:220% 220%;
    animation:navyWaves 8s ease-in-out infinite;
}

body.uno::after{
    content:"";
    position:fixed;
    inset:-40px;
    z-index:-1;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,170,255,.18), transparent 40%),
        radial-gradient(ellipse at 80% 40%, rgba(0,90,255,.20), transparent 45%);
    filter:blur(30px);
    animation:waveGlow 6s ease-in-out infinite alternate;
}

@keyframes navyWaves{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

@keyframes waveGlow{
    0%{
        transform:translateX(-40px) translateY(0);
    }
    100%{
        transform:translateX(40px) translateY(20px);
    }
}

/* LINKS */

a[href^="tel"]{
    color:inherit;
    text-decoration:none;
}

a{
    text-decoration:none;
}

/* HEADER */

.site-header{
    width:100%;
    padding-top:10px;
    position:relative;
    z-index:100;
}

.header-desktop{
    width:50%;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.header-logo,
.header-tagline,
.header-empty{
    width:33.33%;
}

.header-logo{
    text-align:left;
}

.header-logo img{
    height:80px;
}

.header-tagline{
    text-align:center;
    color:white;
    font-family:Arial, sans-serif;
    font-size:14px;
}

.desktop-nav{
    width:50%;
    margin:15px auto 0 auto;
    display:flex;
    justify-content:space-between;
    gap:10px;
}

.desktop-nav a{
    width:100px;
    height:30px;
    line-height:30px;
    text-align:center;
    border:1px solid white;
    border-radius:5px;
    color:white;
    font-family:Arial, sans-serif;
    font-size:14px;
    background:rgba(0,0,0,0.20);
    transition:0.2s;
}

.desktop-nav a:hover{
    background:rgba(255,255,255,0.15);
    color:white;
}

.mobile-header{
    display:none;
}

/* MAIN */

.hero-wrapper{
    width:100%;
    text-align:center;
    color:white;
}

/* QUICK ACTIONS */

.quick-actions{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
    margin:35px auto;
}

.quick-action{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:320px;
    height:58px;

    border-radius:999px;
    background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.35);

    color:white !important;
    font-family:Arial, sans-serif;
    font-size:18px;
    font-weight:700;

    backdrop-filter:blur(6px);
    box-shadow:0 8px 24px rgba(0,0,0,0.25);

    box-sizing:border-box;
    transition:0.2s;
}

.quick-action i{
    color:#00ff66;
    font-size:22px;
}

.quick-action:hover{
    background:rgba(255,255,255,0.25);
    color:white !important;
}

/* LOCATIONS */

.locations-wrapper{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:40px;
    flex-wrap:wrap;
    margin-top:20px;
}

.location-card{
    text-align:center;
    color:white;
    font-family:Arial, sans-serif;
}

.location-info{
    margin-top:12px;
    font-size:14px;
    line-height:1.5;
    text-shadow:1px 1px 2px black;
}

.location-phone{
    font-size:22px;
    font-weight:bold;
    color:#ffd54a;
}

/* HERO MESSAGE */

.main-message{
    font-family:Verdana, Arial, sans-serif;
    font-size:30px;
    margin-top:35px;
    line-height:1.4;
    color:white;
    text-shadow:1px 1px 3px black;
}

/* FEATURES */

.features-section{
    width:90%;
    max-width:1100px;
    margin:50px auto 0 auto;
    text-align:center;
    font-family:Arial, sans-serif;
}

.features-label{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    color:#ffcc66;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:bold;
    letter-spacing:1px;
    margin-bottom:15px;
}

.features-section h2{
    color:white;
    font-size:52px;
    margin:10px 0;
    text-shadow:1px 1px 3px black;
}

.features-subtitle{
    color:white;
    font-size:18px;
    margin-bottom:35px;
    text-shadow:1px 1px 2px black;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.feature-card{
    background:rgba(255,255,255,0.92);
    color:#0d2238;
    padding:28px 18px;
    border-radius:14px;
    text-align:center;
    min-height:170px;
}

.feature-card i{
    background:#0d2238;
    color:white;
    width:55px;
    height:55px;
    line-height:55px;
    border-radius:12px;
    font-size:24px;
    margin-bottom:15px;
}

.feature-card h3{
    font-size:28px;
    margin:8px 0;
    color:#0d2238;
}

.feature-card p{
    font-size:18px;
    line-height:1.5;
    margin:0;
    color:#44566b;
}

/* BENEFITS */

.green-benefits{
    margin:45px auto 0 auto;
    background:#1f9d55;
    color:white;
    padding:16px 10px;
    text-align:center;
    font-family:Arial, sans-serif;
    font-weight:bold;
}

.green-benefits span{
    display:inline-block;
    margin:6px 14px;
    font-size:14px;
}

.green-benefits i{
    margin-right:6px;
}

/* MOBILE */

@media(max-width:768px){

    .header-desktop,
    .desktop-nav{
        display:none;
    }

    .mobile-header{
        display:flex;
        align-items:center;
        width:100%;
        padding:10px 15px;
        box-sizing:border-box;
    }

    .mobile-menu-btn{
        width:60px;
        text-align:left;
    }

    .mobile-menu-btn img{
        height:42px;
    }

    .mobile-logo{
        flex:1;
        text-align:center;
        margin-right:60px;
    }

    .mobile-logo img{
        height:50px;
    }

    .quick-action{
        width:90%;
        max-width:320px;
        font-size:16px;
    }

    .locations-wrapper{
        gap:25px;
    }

    .location-info{
        font-size:13px;
    }

    .location-phone{
        font-size:18px;
    }

    .main-message{
        font-size:22px;
        padding:0 15px;
        margin-top:25px;
    }

    .features-section{
        width:100%;
        padding:0 15px;
        box-sizing:border-box;
    }

    .features-section h2{
        font-size:38px;
        line-height:1.2;
    }

    .features-subtitle{
        font-size:16px;
    }

    .features-grid{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:18px;
    }

    .feature-card{
        width:90%;
        max-width:320px;
        min-height:auto;
    }

    .feature-card h3{
        font-size:22px;
    }

    .feature-card p{
        font-size:16px;
    }

    .green-benefits span{
        display:block;
        margin:10px 0;
    }
}