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

body{
    font-family:Inter,sans-serif;
    background:#f8fafc;
    color:#0f172a;
    line-height:1.6;
}

.hero{
    position:relative;
    height:420px;
}

.hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.15),
        rgba(0,0,0,.65)
    );
}

.profile-header{
    max-width:1200px;
    margin:-100px auto 0;
    padding:0 20px;
    position:relative;
    z-index:5;
}

.profile-card{
    background:#fff;
    border-radius:24px;
    padding:32px;
    display:flex;
    gap:30px;
    align-items:center;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.profile-logo img{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius: 28px;
}

.profile-details{
    flex:1;
}

.badge{
     display:inline-flex;
  border: 1px solid #d3d3d3;
  align-items: center;
  gap: .5rem;
  color:#000;
  padding:8px 16px;
  border-radius:999px;
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:20px;
}

.profile-details h1{
    font-size:2.4rem;
    margin-bottom:10px;
}

.profile-details p{
    color:#64748b;
    margin-bottom:18px;
    max-width: 600px;
}

.meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.meta span{
    color:#475569;
}

.profile-actions{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.btn-primary{
    background:#000;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
}

.btn-secondary{
    background:#f1f5f9;
    color:#0f172a;
    text-decoration:none;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
}

.container{
    max-width:1200px;
    margin:40px auto 100px;
    padding:0 20px;
}

.card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    margin-bottom:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.card h2{
    margin-bottom:20px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:16px;
}

.service-item{
    background:#f8fafc;
    padding:18px;
    border-radius:14px;
    display:flex;
    gap:12px;
    align-items:center;
    font-weight:500;
}

.service-item i{
    color:#65a30d;
}

.coverage{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.coverage span{
    padding:10px 16px;
    background:#f1f5f9;
    border-radius:999px;
}

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

.gallery img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:16px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

.contact-card{
    text-decoration:none;
    color:inherit;
    background:#f8fafc;
    padding:22px;
    border-radius:18px;
    display:flex;
    gap:15px;
    align-items:center;
}

.contact-card i{
    font-size:1.5rem;
}

.contact-card h4{
    margin-bottom:4px;
}

.contact-card p{
    color:#64748b;
}

.mobile-cta{
    display:none;
}

@media(max-width:900px){

    .profile-card{
        flex-direction:column;
        text-align:center;
    }

    .profile-actions{
        width:100%;
    }

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

    .mobile-cta{
        display:block;
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        z-index:100;
        background:#fff;
        padding:12px;
        box-shadow:0 -10px 30px rgba(0,0,0,.1);
    }

    .mobile-cta a{
        display:block;
        text-align:center;
        background:#000;
        color:#fff;
        text-decoration:none;
        padding:16px;
        border-radius:12px;
        font-weight:600;
    }
}