:root{
    --primary:#1565c0;
    --primary-dark:#0d47a1;
    --secondary:#42a5f5;
    --accent:#90caf9;
    --yellow:#ffd54f;
    --light:#f4f8fc;
    --dark:#1b1f24;
}

*{
    font-family:'Poppins', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f8fc;
    overflow-x:hidden;
}

.navbar{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.navbar-brand{
    font-weight:700;
    color:var(--primary)!important;
    font-size:1.5rem;
}

.navbar-brand i{
    margin-right:6px;
}

.nav-link{
    font-weight:500;
    color:#333!important;
    transition:.3s;
}

.nav-link:hover{
    color:var(--primary)!important;
}

.hero{
    min-height:100vh;
    background:
        linear-gradient(
            rgba(13,71,161,.78),
            rgba(21,101,192,.82)
        ),
        url('https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    position:relative;
    color:white;
}

.hero-content{
    animation:fadeUp 1s ease;
}

.hero h1{
    font-size:4rem;
    font-weight:700;
    max-width:760px;
}

.hero p{
    font-size:1.2rem;
    max-width:700px;
    opacity:.95;
}

.btn-custom{
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary-custom{
    background:var(--yellow);
    color:#000;
    border:none;
}

.btn-primary-custom:hover{
    transform:translateY(-3px);
    background:#ffca2c;
    color:#000;
}

.btn-outline-custom{
    border:2px solid white;
    color:white;
}

.btn-outline-custom:hover{
    background:white;
    color:var(--primary);
}

.alert-custom{
    background:#eaf4ff;
    border-left:6px solid var(--primary);
    padding:20px;
    box-shadow:0 4px 18px rgba(0,0,0,.05);
}

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.5rem;
    font-weight:700;
    color:var(--primary);
}

.section-title p{
    color:#666;
}

.feature-card{
    background:white;
    border-radius:22px;
    padding:35px;
    text-align:center;
    transition:.5s;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    opacity:0;
    transform:translateY(40px);
}

.feature-card.show{
    opacity:1;
    transform:translateY(0);
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 12px 28px rgba(21,101,192,.18);
}

.feature-icon{
    font-size:3rem;
    color:var(--primary);
    margin-bottom:20px;
}

.category-card{
    background:white;
    border-radius:20px;
    padding:32px 20px;
    text-align:center;
    transition:.5s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    cursor:pointer;
    height:100%;
    opacity:0;
    transform:translateY(40px);
}

.category-card.show{
    opacity:1;
    transform:translateY(0);
}

.category-card:hover{
    transform:scale(1.05);
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:white;
}

.category-card i{
    font-size:3rem;
    margin-bottom:15px;
    color:var(--primary);
}

.category-card:hover i{
    color:white;
}

.local-card{
    border:none;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    transition:.5s;
    opacity:0;
    transform:translateY(40px);
}

.local-card.show{
    opacity:1;
    transform:translateY(0);
}

.local-card:hover{
    transform:translateY(-10px);
    box-shadow:0 14px 35px rgba(21,101,192,.18);
}

.btn-location{
    background:var(--primary);
    color:white;
    font-weight:600;
}

.btn-location:hover{
    background:var(--primary-dark);
    color:white;
}

.contact-section{
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    color:white;
    border-radius:30px;
    padding:60px;
    box-shadow:0 15px 40px rgba(13,71,161,.25);
}

.social-btn{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:white;
    color:var(--primary);
    text-decoration:none;
    transition:.3s;
    font-size:1.3rem;
}

.social-btn:hover{
    transform:translateY(-5px);
    background:var(--yellow);
    color:#000;
}

footer{
    background:var(--dark);
    color:white;
    padding:25px 0;
}

.scroll-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:white;
    display:none;
    z-index:999;
    box-shadow:0 6px 18px rgba(0,0,0,.25);
}

.scroll-top:hover{
    background:var(--primary-dark);
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){
    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:2.7rem;
    }

    .hero p{
        font-size:1rem;
    }

    .hero-buttons{
        justify-content:center;
    }

    .contact-section{
        padding:35px 25px;
    }

    .section{
        padding:65px 0;
    }
}