:root { 
    --p-dark: #003B73; 
    --accent: #FFC107; 
    --bg: #F5F7FA; 
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: var(--bg); padding-bottom: 120px; overflow-x: hidden; }

/* HEADER */
.main-header { 
    background: var(--p-dark); 
    padding: 60px 20px 110px; 
    text-align: center; 
    border-radius: 0 0 50px 50px; 
    position: relative;
    z-index: 1;
}
.logo-text { font-size: 2rem; font-weight: 900; line-height: 1; }
.m-yellow { color: var(--accent); } .m-white { color: #fff; }
.tagline-yellow { color: var(--accent); font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-top: 5px; display: block; }

/* CONTAINER & SPACING */
.container { padding: 0 20px; position: relative; z-index: 10; }
.profile-page { margin-top: -35px; } /* Jarak naik sedikit agar tidak nabrak teks header */

.section-label { font-weight: 800; color: var(--p-dark); margin: 35px 0 15px; display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }

/* SERVICE CARD */
.service-grid-photo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.s-card { position: relative; height: 110px; border-radius: 18px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.s-card img { width: 100%; height: 100%; object-fit: cover; }
.s-overlay { position: absolute; inset: 0; background: rgba(0, 59, 115, 0.65); display: flex; align-items: center; justify-content: center; }
.s-overlay span { color: var(--accent); font-size: 0.7rem; font-weight: 800; }

/* ABOUT MAHIKA - Shadow Bawah Only */
.about-card-simple {
    background: white; padding: 25px; border-radius: 20px;
    font-size: 0.78rem; line-height: 1.8; color: #444; text-align: justify;
    box-shadow: 0 15px 25px -10px rgba(0, 59, 115, 0.25);
}

/* GALLERY & TESTI CONTAINERS */
.gallery-container { width: 100%; height: 210px; background: #ddd; border-radius: 20px; overflow: hidden; position: relative; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.testi-container { background: white; padding: 25px; border-radius: 20px; min-height: 140px; display: flex; align-items: center; box-shadow: 0 15px 20px -10px rgba(0, 59, 115, 0.1); }

/* ANIMASI FADE */
.fade-anim { animation: fadeInOut 5s infinite; }
@keyframes fadeInOut {
    0%, 100% { opacity: 0; transform: scale(1.02); }
    10%, 90% { opacity: 1; transform: scale(1); }
}

/* BUTTONS & NAV */
.btn-main-contact { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--p-dark); color: var(--accent); padding: 18px; border-radius: 18px; text-decoration: none; font-weight: 800; border: 2px solid var(--accent); box-shadow: 0 10px 20px rgba(0, 59, 115, 0.2); }
.bottom-nav { position: fixed; bottom: 20px; left: 20px; right: 20px; height: 75px; background: #fff; display: flex; justify-content: space-around; align-items: center; border-radius: 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); z-index: 1000; }
.nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #8E8E93; gap: 3px; font-size: 0.6rem; font-weight: 700; }
.nav-item i { font-size: 1.3rem; }
.nav-item.active { color: var(--p-dark); }
