* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body {
    background: #f6f6f7;
    color: #1f2937;
}

/* Top navigation */
.topbar{
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.brand{
    text-decoration: none;
    color: #111827;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.nav{ display: flex; gap: 10px; }
.navlink{
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 999px;
    transition: 0.2s ease;
}
.navlink:hover{ background: rgba(0,0,0,0.06); }
.navlink.active{
    background: #111827;
    color: #fff;
}

/* Hero with blurred background image */
.hero{
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hero-bg{
    position: absolute;
    inset: 0;
    background-image: url('/images/main-bg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    transform: scale(1.1);
    opacity: 0.30;
}

.hero-inner{
    position: relative;
    width: 100%;
    max-width: 1050px;
    padding: 28px 20px;
}

.hero-card{
    display: inline-block;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 18px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-card h1{
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
}

.hero-card p{
    color: #374151;
    opacity: 0.95;
}

/* Page container */
.container{
    max-width: 1050px;
    margin: 0 auto;
    padding: 24px 20px 60px;
}

/* Cards */
.grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.card{
    position: relative;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    overflow: hidden;
}

.card:hover{
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}

.card-accent{
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, rgba(59,130,246,0.95), rgba(14,165,233,0.95));
}

.title{
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    margin-top: 10px;
    margin-bottom: 6px;
}

.desc{
    color: #4b5563;
    line-height: 1.45;
}

/* Info section */
.info{ margin-top: 18px; }

.info-box{
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.info-box h2{
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #111827;
}

.info-box p{
    color: #4b5563;
    margin-bottom: 12px;
}

.info-actions{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn{
    text-decoration: none;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, background 0.18s ease, border 0.18s ease;
}

.btn.primary{
    background: #111827;
    color: #fff;
}

.btn.primary:hover{ transform: translateY(-2px); }

.btn.ghost{
    background: transparent;
    color: #111827;
    border: 1px solid rgba(0,0,0,0.12);
}

.btn.ghost:hover{
    background: rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

/* WhatsApp Order Section */
.whatsapp-section{
    margin-top: 28px;
    padding: 0 0 20px;
}

.whatsapp-box{
    max-width: 1050px;
    margin: 0 auto;
    padding: 18px 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.whatsapp-left{
    display: flex;
    align-items: center;
    gap: 14px;
}

.whatsapp-icon{
    width: 52px;
    height: 52px;
}

.whatsapp-text h3{
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2px;
    color: #111827;
}

.whatsapp-text p{
    margin: 0;
    color: #4b5563;
}

.whatsapp-text .phone{
    font-weight: 700;
    margin-top: 2px;
}

.whatsapp-btn{
    text-decoration: none;
    background: #25D366;
    color: #fff;
    font-weight: 800;
    padding: 12px 18px;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.whatsapp-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37,211,102,0.35);
}

/* Mobile */
@media (max-width: 900px){
    .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px){
    .grid{ grid-template-columns: 1fr; }
    .hero-card h1{ font-size: 1.8rem; }

    .whatsapp-box{
        flex-direction: column;
        align-items: flex-start;
    }
}
