/* =====================================================
   IT Place Technology - Public Site Stylesheet
   Theme: logo blue (#1B75BC) on light/dark surfaces
   ===================================================== */
:root {
  --blue: #1B75BC;
  --blue-dark: #0F5A94;
  --blue-deep: #0A3D64;
  --blue-soft: #E8F2FB;
  --ink: #12212E;
  --ink-2: #43525F;
  --ink-3: #6B7A87;
  --line: #E3EAF0;
  --bg: #F6F9FC;
  --white: #FFFFFF;
  --amber: #F5A623;
  --green: #22B45E;
  --red: #E5484D;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 47, 77, .08);
  --shadow-lg: 0 24px 60px rgba(13, 47, 77, .16);
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; color: var(--ink); }
.container { width: min(1180px, 92%); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 8px; top: 8px; background: var(--white); padding: 8px 14px; z-index: 999; border-radius: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 12px 24px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all .25s ease; line-height: 1;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(27,117,188,.35); }
.btn-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-white { background: #fff; color: var(--blue-dark); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--blue-deep); }
.btn-outline-white { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--blue-dark); }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Topbar ---------- */
.topbar { background: var(--blue-deep); color: #cfe3f4; font-size: .82rem; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 7px 0; flex-wrap: wrap; }
.topbar a { color: #cfe3f4; display: inline-flex; align-items: center; gap: 6px; margin-right: 18px; }
.topbar a:hover { color: #fff; }
.topbar-addr { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 10px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 52px; height: 48px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; font-family: var(--font-head); }
.brand-text strong { font-size: 1.25rem; font-weight: 800; color: var(--blue); letter-spacing: .5px; }
.brand-text small { font-size: .68rem; font-weight: 600; letter-spacing: 3.5px; color: var(--ink-2); }
.brand-text-light strong, .brand-text-light small { color: #fff; }
.brand-text-light small { color: #A9C6E0; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  color: var(--ink-2); padding: 10px 16px; border-radius: 999px; transition: all .2s;
}
.nav-link:hover { color: var(--blue); background: var(--blue-soft); }
.nav-link.active { color: var(--blue); font-weight: 600; }
.btn-nav { margin-left: 10px; background: var(--blue); color: #fff !important; padding: 10px 20px; }
.btn-nav:hover { background: var(--blue-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 3px; background: var(--blue); border-radius: 2px; transition: .3s; }

/* ---------- Hero slider ---------- */
.hero { position: relative; overflow: hidden; background: var(--blue-deep); }
.hero-slides { position: relative; }
.hero-slide { display: none; position: relative; }
.hero-slide.active { display: block; }
.hero-slide img { width: 100%; height: min(78vh, 680px); object-fit: cover; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,32,54,.88) 15%, rgba(6,32,54,.55) 45%, rgba(6,32,54,.18) 75%);
}
.hero-content {
  position: absolute; inset: 0; display: flex; align-items: center; z-index: 2;
}
.hero-text { max-width: 640px; color: #fff; padding: 40px 0; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  color: #DCEBFA; font-size: .8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.hero-text h1 { color: #fff; font-size: clamp(1.9rem, 4.2vw, 3.3rem); font-weight: 700; margin-bottom: 14px; }
.hero-text h1 .accent { color: #6FC1F5; }
.hero-text p { color: #D9E7F2; font-size: 1.06rem; margin-bottom: 26px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-nav {
  position: absolute; bottom: 26px; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center; align-items: center; gap: 10px;
}
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.45); border: 0; cursor: pointer; transition: .3s; }
.hero-dot.active { background: #fff; width: 28px; border-radius: 999px; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.16); color: #fff; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; transition: .25s;
}
.hero-arrow:hover { background: var(--blue); }
.hero-arrow.prev { left: 18px; }
.hero-arrow.next { right: 18px; }

/* ---------- Section shells ---------- */
.section { padding: 84px 0; }
.section.alt { background: var(--bg); }
.section-head { max-width: 700px; margin: 0 auto 52px; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-size: .8rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue);
  background: var(--blue-soft); padding: 6px 16px; border-radius: 999px; margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 12px; }
.section-head p { color: var(--ink-3); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: all .3s ease; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.icon-badge {
  width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--blue); background: var(--blue-soft); margin-bottom: 18px;
  transition: .3s;
}
.card:hover .icon-badge { background: var(--blue); color: #fff; transform: scale(1.05) rotate(-4deg); }
.card h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--ink-3); font-size: .93rem; }
.card .link-more { font-family: var(--font-head); font-weight: 600; font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; }

/* ---------- Service detail ---------- */
.svc {
  display: grid; grid-template-columns: 480px 1fr; gap: 44px; align-items: center;
  padding: 48px; border-radius: 20px; background: var(--white); border: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.svc.flip { grid-template-columns: 1fr 480px; }
.svc.flip .svc-media { order: 2; }
.svc-media img { border-radius: 16px; box-shadow: var(--shadow-lg); aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.svc-media.placeholder {
  aspect-ratio: 16/10; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-soft), #D3E6F7); color: var(--blue); font-size: 3.6rem;
  box-shadow: var(--shadow);
}
.svc-body h3 { font-size: 1.5rem; margin-bottom: 6px; }
.svc-body .svc-sub { color: var(--blue); font-weight: 600; font-family: var(--font-head); font-size: .95rem; margin-bottom: 14px; }
.svc-body p { color: var(--ink-2); margin-bottom: 18px; }
.svc-body ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin-bottom: 22px; }
.svc-body ul li { color: var(--ink-2); font-size: .92rem; display: flex; gap: 8px; align-items: flex-start; }
.svc-body ul li i { color: var(--green); margin-top: 4px; }

/* ---------- Split (About) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: 20px; box-shadow: var(--shadow-lg); }
.split-media::before {
  content: ''; position: absolute; inset: 24px -24px -24px 24px;
  border: 3px solid var(--blue-soft); border-radius: 20px; z-index: -1;
}
.exp-badge {
  position: absolute; right: -18px; bottom: -20px; background: var(--blue); color: #fff;
  border-radius: 18px; padding: 18px 22px; text-align: center; box-shadow: var(--shadow-lg);
}
.exp-badge strong { display: block; font-size: 2rem; font-family: var(--font-head); }
.exp-badge span { font-size: .8rem; opacity: .9; }
.check-list li { display: flex; gap: 12px; margin-bottom: 12px; color: var(--ink-2); }
.check-list i { color: var(--green); margin-top: 4px; }
.split-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

/* ---------- Stats ---------- */
.stats { background: linear-gradient(120deg, var(--blue-deep), var(--blue-dark)); color: #fff; padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong { font-size: 2.6rem; font-family: var(--font-head); font-weight: 700; display: block; color: #6FC1F5; }
.stat span { color: #CFE3F4; font-size: .95rem; }

/* ---------- Pricing ---------- */
.price-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 28px; display: flex; flex-direction: column; position: relative; transition: .3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { border: 2px solid var(--blue); box-shadow: var(--shadow-lg); }
.pop-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #4A2E00; font-size: .72rem; font-weight: 700;
  font-family: var(--font-head); letter-spacing: 1px; padding: 5px 14px; border-radius: 999px;
}
.price-name { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; margin-bottom: 4px; }
.price-tagline { color: var(--ink-3); font-size: .84rem; margin-bottom: 18px; min-height: 40px; }
.price-amount { font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: 2rem; }
.price-period { color: var(--ink-3); font-size: .82rem; margin-bottom: 20px; }
.price-list { flex: 1; margin-bottom: 24px; }
.price-list li { display: flex; gap: 9px; font-size: .9rem; color: var(--ink-2); margin-bottom: 9px; }
.price-list i { color: var(--green); margin-top: 4px; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { text-align: center; padding: 30px 20px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.step-num {
  width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.tst { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: relative; }
.tst .quote { position: absolute; top: 18px; right: 24px; font-size: 2.6rem; color: var(--blue-soft); font-family: Georgia, serif; }
.tst-stars { color: var(--amber); margin-bottom: 12px; }
.tst p { color: var(--ink-2); font-size: .95rem; margin-bottom: 18px; }
.tst-who { display: flex; align-items: center; gap: 12px; }
.tst-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head);
  flex: none;
}
.tst-who strong { display: block; font-size: .95rem; }
.tst-who span { color: var(--ink-3); font-size: .82rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 44px; }
.info-card {
  display: flex; gap: 16px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; margin-bottom: 18px; transition: .3s;
}
.info-card:hover { box-shadow: var(--shadow); }
.info-card .icon-badge { margin: 0; flex: none; width: 50px; height: 50px; font-size: 1.25rem; }
.info-card strong { display: block; font-family: var(--font-head); margin-bottom: 3px; }
.info-card p, .info-card a { color: var(--ink-2); font-size: .93rem; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 36px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: .88rem; }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 14px;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--bg);
  transition: border .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: .93rem; }
.alert-success { background: #E8F8EF; color: #17693A; border: 1px solid #BFE9D0; }
.alert-error { background: #FDECEC; color: #9F2226; border: 1px solid #F3C1C3; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(115deg, var(--blue-dark), var(--blue)); border-radius: 22px;
  color: #fff; padding: 56px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap; box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 8px; }
.cta-band p { color: #D9E9F7; max-width: 520px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(115deg, var(--blue-deep), var(--blue-dark)); color: #fff; padding: 64px 0; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 8px; }
.page-hero p { color: #C9DCEE; max-width: 640px; }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; margin-top: 14px; color: #9FC3E2; }
.breadcrumb a { color: #DCEBFA; }

/* ---------- Footer ---------- */
.site-footer { background: #0B2439; color: #B9CEDF; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr; gap: 40px; padding: 64px 0 44px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.site-footer h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--blue); border-radius: 2px; }
.footer-about { font-size: .9rem; margin: 16px 0 18px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #B9CEDF; font-size: .9rem; transition: .2s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .9rem; }
.footer-contact i { color: #6FC1F5; margin-top: 4px; }
.footer-contact a { color: #B9CEDF; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: #DCEBFA; transition: .25s;
}
.footer-social a:hover { background: var(--blue); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: .85rem; }
.footer-bottom-in { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.footer-bottom .bi-heart-fill { color: var(--red); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 600;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  box-shadow: 0 10px 26px rgba(37,211,102,.45); animation: waPulse 2.2s infinite;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .svc, .svc.flip { grid-template-columns: 1fr; padding: 28px; }
  .svc.flip .svc-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .main-nav {
    position: fixed; top: 0; right: -300px; width: 280px; height: 100vh;
    background: #fff; flex-direction: column; align-items: flex-start; padding: 84px 26px 26px;
    gap: 6px; box-shadow: -12px 0 40px rgba(0,0,0,.15); transition: right .3s ease; z-index: 700;
  }
  .main-nav.open { right: 0; }
  .nav-link { width: 100%; }
  .btn-nav { margin: 12px 0 0; }
  .nav-toggle { display: flex; z-index: 800; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .grid-3, .grid-2, .tst-grid { grid-template-columns: 1fr; }
  .grid-4, .price-cards, .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-slide img { height: 72vh; min-height: 480px; }
  .hero-arrow { display: none; }
  .section { padding: 60px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .topbar-addr { display: none; }
  .brand-text small { letter-spacing: 2px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band { padding: 40px 26px; }
}
