.site-nav { position: fixed; z-index: 1000; inset: 0 0 auto; padding: .8rem 5%; background: rgb(255 255 255 / 88%); backdrop-filter: blur(12px); box-shadow: 0 2px 16px rgb(0 0 0 / 6%); }
.nav-container { display: flex; max-width: var(--max-width); min-height: 50px; margin: auto; align-items: center; justify-content: space-between; }
.logo-img { display: block; width: auto; height: 50px; }
.nav-links { display: flex; gap: clamp(1rem, 3vw, 2.5rem); margin: 0; padding: 0; list-style: none; }
.nav-links a { position: relative; font-weight: 600; text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--primary); }
.nav-links a[aria-current="page"]::after { position: absolute; right: 0; bottom: -.35rem; left: 0; height: 2px; background: var(--primary); content: ""; }
.hamburger { display: none; border: 0; background: transparent; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 2px; margin: 5px; background: var(--text-dark); transition: transform var(--transition), opacity var(--transition); }
.hero { display: grid; min-height: 100vh; padding: 8rem 5% 4rem; overflow: hidden; place-items: center; position: relative; }
.hero-content { position: relative; max-width: 900px; text-align: center; }
.hero h1 { margin: 0 0 1rem; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.25; }
.hero p { margin: 0 0 2rem; color: var(--text-light); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.floating-shape { position: absolute; border-radius: 50%; opacity: .1; background: linear-gradient(135deg, var(--primary), var(--secondary)); animation: float 8s ease-in-out infinite; }
.shape-one { top: 15%; left: 5%; width: 120px; height: 120px; }.shape-two { top: 65%; right: 8%; width: 80px; height: 80px; animation-delay: 2s; }.shape-three { bottom: 15%; left: 20%; width: 60px; height: 60px; animation-delay: 4s; }
@keyframes float { 50% { transform: translateY(-24px); } }
.section { padding: 5rem 5%; }.content-container { max-width: var(--max-width); margin: auto; }.section h2 { margin: 0 0 3rem; text-align: center; font-size: clamp(2rem, 4vw, 2.8rem); }.section h2::after { display: block; width: 80px; height: 4px; margin: 1rem auto 0; border-radius: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); content: ""; }
.about { background: radial-gradient(circle at 80% 20%, rgb(52 152 219 / 10%), transparent 38%); }.about-text { max-width: 900px; margin: auto; }.about-text p { margin: 0 0 1.3rem; color: var(--text-med); font-size: 1.08rem; }.about-text .lead { color: var(--text-dark); font-size: 1.25rem; font-weight: 700; }.highlight { padding: 1.3rem; border-left: 4px solid var(--primary); border-radius: 0 var(--radius) var(--radius) 0; background: linear-gradient(135deg, rgb(52 152 219 / 10%), rgb(46 204 113 / 10%)); }
.services { background: radial-gradient(circle at 20% 30%, rgb(46 204 113 / 10%), transparent 38%); }.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }.service-card { padding: 2rem; border-radius: var(--radius); background: rgb(255 255 255 / 75%); box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }.service-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgb(0 0 0 / 10%); }.service-icon { display: grid; width: 64px; height: 64px; margin-bottom: 1rem; border-radius: 50%; place-items: center; background: linear-gradient(135deg, var(--primary), var(--secondary)); font-size: 1.6rem; }.service-card h3 { margin: 0 0 .65rem; }.service-card p { margin: 0; color: var(--text-light); }
.scroll-animate { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }.scroll-animate.show { opacity: 1; transform: none; }
footer { padding: 3rem 1.5rem; background: linear-gradient(135deg, #2c3e50, #34495e); color: var(--bg-end); text-align: center; } footer p { margin: .65rem 0; } footer a { text-underline-offset: .2em; }.public-security-record img { vertical-align: text-bottom; }
@media (max-width: 768px) { .hamburger { display: block; }.hamburger[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }.hamburger[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }.nav-links { position: fixed; inset: 66px 0 auto; display: none; padding: 1.5rem 5%; background: #fff; flex-direction: column; box-shadow: 0 10px 20px rgb(0 0 0 / 8%); }.nav-links.open { display: flex; }.hero { min-height: 90vh; }.section { padding-block: 3.75rem; }.service-grid { grid-template-columns: 1fr; }.service-card { max-width: 520px; margin-inline: auto; } }
