/* assets/css/style.css */
:root {
  --blue: #0c2f47;
  --green: #0fa885;
  --bg: #f4f6f9;
  --white: #ffffff;
  --text: #1d2433;
  --muted: #647086;
  --radius: 12px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--text); }
header { background: #FAF7F4; border-bottom: 1px solid #dfe4ec; position: sticky; top: 0; z-index: 50; }
.topbar { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: .5rem 1rem; }
.brand { display: flex; gap: .6rem; align-items: center; }
.brand img { height: auto; width: 160px; object-fit: contain; }
.brand-title { font-weight: 700; color: var(--blue); font-size: 1rem; line-height: 1.1; }
nav {display: block;}
nav a {margin-left: 1rem; text-decoration: none; color: #1e2635; font-weight: 500; }
nav a:hover { color: var(--blue); }
.btn { background: var(--blue); color: #fff; padding: .45rem 1.1rem; border-radius: 999px; text-decoration: none; font-weight: 600; }
.hero { max-width: 1180px; margin: 2.2rem auto 1.2rem; padding: 0 1rem; display: grid; gap: 2rem; grid-template-columns: 1.1fr .9fr; align-items: center; }
.tag { text-transform: uppercase; font-size: .65rem; letter-spacing: .12em; color: var(--green); font-weight: 700; margin-bottom: .4rem; }
.hero h1 { font-size: clamp(2rem, 3.2vw, 2.6rem); margin-bottom: 1rem; }
.hero p { color: var(--muted); margin-bottom: 1rem; }
.hero-box { background: #fff; padding: 1.3rem 1.3rem 1rem; border-radius: var(--radius); box-shadow: 0 10px 35px rgba(0,0,0,.04); }
label { display: block; font-weight: 500; margin-bottom: .25rem; }
input, select, textarea { width: 100%; padding: .45rem .6rem; border: 1px solid #d3d8e0; border-radius: 8px; margin-bottom: .6rem; font-family: inherit; }
.section { max-width: 1180px; margin: 0 auto; padding: 2rem 1rem; }
.section-title { font-size: 1.6rem; margin-bottom: 1.1rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.3rem; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 26px rgba(0,0,0,.02); border: 1px solid rgba(12,47,71,.03); display:flex; flex-direction:column; }
.service-card img { width: 100%; height: 100%; object-fit: cover; background: #d9e2ea; }
.service-body { padding: .9rem .9rem 1rem; flex:1; }
.badge { background: rgba(12,47,71,.08); color: var(--blue); font-size: .6rem; padding: .25rem .55rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .08em; display: inline-block; margin-bottom: .4rem; }
.service-body h3 { margin-top: 0; margin-bottom: .4rem; }
.service-body p { margin: 0; color: var(--muted); font-size: .85rem; }
.service-footer { padding: .7rem .9rem 1rem; }
footer { background: #09121a; color: #d3d9df; padding: 2.5rem 1rem 1.5rem; margin-top: 2rem; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr .9fr .9fr .9fr; gap: 1.5rem; }
.footer-brand { display: flex; gap: .6rem; align-items: center; }
.footer-brand img { height: auto; width: 140px; object-fit: contain; }
.footer-title { font-weight: 600; margin-bottom: .4rem; }
.footer-links a { display: block; color: #d3d9df; text-decoration: none; margin-bottom: .35rem; font-size: .85rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { max-width: 1180px; margin: 1.2rem auto 0; border-top: 1px solid rgba(255,255,255,.05); padding-top: 1rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .8rem; }
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  nav { display: block; }
  .nav-desktop {display: none;}
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.intro-left-logo {
    width: 180px;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
    display: block;
}

/* Centered intro logo */
.intro-center-logo {
    display: block;
    margin: 0 auto 1.2rem auto; /* center + bottom spacing */
    width: 180px;
    max-width: 60%;
    height: auto;
    object-fit: contain;
}
