/* ============================================
   KAKI PALSU JAMBI - Premium Landing Page CSS
   ============================================ */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1565C0;
  --primary-light: #1976D2;
  --primary-lighter: #42A5F5;
  --primary-dark: #0D47A1;
  --secondary: #2E7D32;
  --secondary-light: #388E3C;
  --secondary-dark: #1B5E20;
  --accent: #FF6F00;
  --accent-light: #FFA000;
  --accent-hover: #E65100;
  --whatsapp: #25D366;
  --bg: #FFFFFF;
  --bg-2: #F8FAFF;
  --bg-3: #EEF2F8;
  --text: #0D1B2A;
  --text-muted: #546E7A;
  --text-light: #90A4AE;
  --border: #DDE3ED;
  --white: #FFFFFF;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --sh-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
  --sh-md: 0 4px 16px rgba(21, 101, 192, .08), 0 2px 8px rgba(0, 0, 0, .04);
  --sh-lg: 0 12px 40px rgba(21, 101, 192, .12), 0 4px 12px rgba(0, 0, 0, .06);
  --sh-xl: 0 24px 64px rgba(21, 101, 192, .16), 0 8px 24px rgba(0, 0, 0, .08);
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 9999px;
  --glass: rgba(255, 255, 255, .88);
  --glass-dark: rgba(13, 27, 42, .85);
  --blur: blur(14px);
  --ease: all .28s cubic-bezier(.4, 0, .2, 1);
  --ease-slow: all .48s cubic-bezier(.4, 0, .2, 1);
}

/* Dark Mode */
[data-theme="dark"] {
  --bg: #0A1628;
  --bg-2: #111F35;
  --bg-3: #1A2E4A;
  --text: #F0F6FF;
  --text-muted: #8BA3BC;
  --text-light: #5F7A95;
  --border: #1E3050;
  --glass: rgba(10, 22, 40, .88);
  --sh-md: 0 4px 16px rgba(0, 0, 0, .3);
  --sh-lg: 0 12px 40px rgba(0, 0, 0, .4);
  --sh-xl: 0 24px 64px rgba(0, 0, 0, .5);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background .3s, color .3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text)
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--ease)
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

ul {
  list-style: none
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none
}

button {
  cursor: pointer
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 96px 0
}

.section-sm {
  padding: 64px 0
}

.bg-2 {
  background: var(--bg-2)
}

.bg-3 {
  background: var(--bg-3)
}

.text-center {
  text-align: center
}

.text-muted {
  color: var(--text-muted)
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(21, 101, 192, .12), rgba(46, 125, 50, .08));
  color: var(--primary);
  border: 1px solid rgba(21, 101, 192, .2);
  margin-bottom: 1rem;
}

.section-label {
  text-align: center;
  margin-bottom: .75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem
}

.btn-sm {
  padding: 10px 20px;
  font-size: .875rem;
  border-radius: var(--r-sm)
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(21, 101, 192, .3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(21, 101, 192, .4)
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(46, 125, 50, .3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46, 125, 50, .4)
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-light), var(--accent-hover));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 111, 0, .3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 111, 0, .45)
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .45)
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(21, 101, 192, .04)
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--sh-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-lg)
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  transition: var(--ease);
}

[data-theme="dark"] header {
  border-bottom-color: rgba(255, 255, 255, .06)
}

header.scrolled {
  box-shadow: var(--sh-md)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.logo-text span {
  color: var(--secondary)
}

.logo-sub {
  font-size: .65rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .5px;
  text-transform: uppercase
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(21, 101, 192, .08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-muted);
  transition: var(--ease);
}

.icon-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(21, 101, 192, .04)
}

.icon-btn svg {
  width: 18px;
  height: 18px
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--ease);
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--glass);
  backdrop-filter: var(--blur);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex
}

.mobile-nav a {
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
}

.mobile-nav a:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(21, 101, 192, .06)
}

/* Search Overlay */
.search-bar {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  z-index: 998;
  transform: translateY(-100%);
  transition: var(--ease-slow);
  box-shadow: var(--sh-md);
}

.search-bar.open {
  transform: translateY(0)
}

.search-wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-wrap input {
  width: 100%;
  padding: 12px 48px 12px 20px;
  border-radius: var(--r-full);
  border: 2px solid var(--border);
  background: var(--bg-2);
  font-size: .95rem;
  transition: var(--ease);
}

.search-wrap input:focus {
  border-color: var(--primary);
  background: var(--bg)
}

.search-wrap .search-ico {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

.search-wrap .search-ico svg {
  width: 18px;
  height: 18px
}

.search-results-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xl);
  max-height: 320px;
  overflow-y: auto;
  display: none;
}

.search-results-drop.show {
  display: block
}

.search-result-item {
  display: block;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  transition: var(--ease);
}

.search-result-item:last-child {
  border-bottom: none
}

.search-result-item:hover {
  background: var(--bg-2)
}

.search-result-title {
  font-weight: 600;
  color: var(--primary);
  font-size: .9rem
}

.search-result-desc {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 2px
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  background: linear-gradient(150deg, #EBF2FF 0%, #F0FFF4 40%, var(--bg) 70%);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .hero {
  background: linear-gradient(150deg, #0D1F3C 0%, #0A2210 40%, var(--bg) 70%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(21, 101, 192, .08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 125, 50, .06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, rgba(21, 101, 192, .1), rgba(46, 125, 50, .06));
  border: 1px solid rgba(21, 101, 192, .2);
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 24px;
}

.hero-label span {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero-title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-title .grad {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(46, 125, 50, .12), rgba(21, 101, 192, .08));
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
  font-weight: 800;
}

.trust-item span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text)
}

.hero-visual {
  position: relative;
}

.hero-img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 4/5;
  position: relative;
}

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

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, .3) 0%, transparent 50%);
}

.hero-float-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: var(--sh-xl);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
}

.float-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-icon svg {
  width: 26px;
  height: 26px
}

.float-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1
}

.float-label {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500
}

.hero-badge-top {
  position: absolute;
  top: 24px;
  right: -16px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  text-align: center;
}

.hero-badge-top .num {
  font-size: 1.5rem;
  font-weight: 800
}

.hero-badge-top .lbl {
  font-size: .7rem;
  font-weight: 600;
  opacity: .9
}

/* Stats bar */
.stats-bar {
  padding: 32px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: -1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  divide-x: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: relative;
}

.about-img-1 {
  grid-column: 1;
  grid-row: 1/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 3/4;
}

.about-img-2 {
  grid-column: 2;
  grid-row: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  aspect-ratio: 4/3;
}

.about-exp-badge {
  grid-column: 2;
  grid-row: 2;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: #fff;
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--sh-lg);
}

.about-exp-badge .big {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1
}

.about-exp-badge .sm {
  font-size: .8rem;
  font-weight: 600;
  opacity: .85;
  margin-top: 4px
}

.about-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-content {
  padding-left: 0
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: rgba(21, 101, 192, .08);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 20px;
}

.about-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25
}

.about-desc {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.75
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.vm-card {
  padding: 20px;
  border-radius: var(--r-lg);
  background: var(--bg-2);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
}

.vm-card.visi::before {
  background: var(--primary)
}

.vm-card.misi::before {
  background: var(--secondary)
}

.vm-card h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-left: 8px
}

.vm-card.visi h4 {
  color: var(--primary)
}

.vm-card.misi h4 {
  color: var(--secondary)
}

.vm-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 8px
}

.btn-download-pair {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

/* Team */
.team-section {
  padding-top: 80px
}

.team-title {
  text-align: center;
  margin-bottom: 48px
}

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

.team-card {
  background: var(--bg);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: var(--ease);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--primary)
}

.team-photo {
  height: 260px;
  overflow: hidden;
  background: var(--bg-3);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ease-slow)
}

.team-card:hover .team-photo img {
  transform: scale(1.05)
}

.team-info {
  padding: 20px 16px
}

.team-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px
}

.team-role {
  font-size: .8rem;
  color: var(--primary);
  font-weight: 600
}

/* ===== SERVICES ===== */
.services-filter {
  max-width: 460px;
  margin: 0 auto 48px;
  position: relative;
}

.services-filter input {
  width: 100%;
  padding: 14px 48px 14px 20px;
  border-radius: var(--r-full);
  border: 2px solid var(--border);
  background: var(--bg);
  box-shadow: var(--sh-sm);
  font-size: .95rem;
  transition: var(--ease);
}

.services-filter input:focus {
  border-color: var(--primary);
  box-shadow: var(--sh-md)
}

.services-filter-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.services-filter-icon svg {
  width: 20px;
  height: 20px
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* 4-column override */
.services-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--bg);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
  border-color: var(--primary)
}

.svc-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--bg-3);
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ease-slow)
}

.svc-card:hover .svc-img img {
  transform: scale(1.06)
}

.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, .5) 0%, transparent 60%);
  opacity: 0;
  transition: var(--ease);
}

.svc-card:hover .svc-img-overlay {
  opacity: 1
}

.svc-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column
}

.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(21, 101, 192, .1), rgba(46, 125, 50, .06));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.svc-icon svg {
  width: 22px;
  height: 22px
}

.svc-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px
}

.svc-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: var(--ease);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--primary)
}

.why-card:hover::before {
  transform: scaleX(1)
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(46, 125, 50, .1), rgba(21, 101, 192, .06));
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--ease);
}

.why-icon svg {
  width: 30px;
  height: 30px
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: #fff
}

.why-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px
}

.why-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  transform: translateX(-50%);
}

.tl-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.tl-item:last-child {
  margin-bottom: 0
}

.tl-item.left {
  flex-direction: row-reverse
}

.tl-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  border: 4px solid var(--bg);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  box-shadow: var(--sh-md);
  transition: var(--ease);
}

.tl-item:hover .tl-dot {
  transform: translate(-50%, -50%) scale(1.2)
}

.tl-content {
  width: calc(50% - 36px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  box-shadow: var(--sh-sm);
  transition: var(--ease);
}

.tl-item.left .tl-content {
  margin-right: 36px
}

.tl-item.right .tl-content {
  margin-left: 36px
}

.tl-item:hover .tl-content {
  box-shadow: var(--sh-lg);
  border-color: var(--primary)
}

.tl-step-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(21, 101, 192, .08);
  line-height: 1;
  margin-bottom: 4px;
}

.tl-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px
}

.tl-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65
}

/* ===== BEFORE AFTER ===== */
.ba-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.ba-box {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  user-select: none;
  cursor: ew-resize;
}

.ba-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.ba-img.ba-after {
  width: 50%;
  border-right: 3px solid #fff;
  box-shadow: 5px 0 20px rgba(0, 0, 0, .2)
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: 4px solid #fff;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--sh-lg);
  transition: background .2s;
}

.ba-handle:hover {
  background: var(--secondary)
}

.ba-handle svg {
  width: 22px;
  height: 22px
}

.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  z-index: 5;
}

.ba-label.before {
  right: 16px
}

.ba-label.after {
  left: 16px
}

.ba-story h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px
}

.ba-story p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px
}

.ba-quote {
  background: var(--bg-2);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 20px;
  font-style: italic;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== VIDEO ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.vid-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: var(--ease);
  background: var(--bg);
}

.vid-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--primary)
}

.vid-thumb {
  position: relative;
  height: 160px;
  background: var(--bg-3);
  overflow: hidden;
}

.vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ease-slow)
}

.vid-card:hover .vid-thumb img {
  transform: scale(1.08)
}

.vid-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 27, 42, .35);
  transition: var(--ease);
}

.vid-card:hover .vid-play {
  background: rgba(21, 101, 192, .45)
}

.play-circle {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--sh-lg);
  transition: var(--ease);
}

.vid-card:hover .play-circle {
  transform: scale(1.1);
  background: var(--primary);
  color: #fff
}

.play-circle svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
  fill: currentColor
}

.vid-title {
  padding: 14px 16px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text)
}

/* ===== TESTIMONI ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(21, 101, 192, .08);
  line-height: 1;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--primary)
}

.testi-stars {
  color: var(--accent-light);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px
}

.testi-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 14px
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--bg-3);
  flex-shrink: 0;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.testi-name {
  font-weight: 700;
  font-size: .9rem
}

.testi-role {
  font-size: .75rem;
  color: var(--text-light)
}

/* Google Reviews */
.google-box {
  margin-top: 48px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}

.g-rating {
  text-align: center;
  padding-right: 48px;
  border-right: 1px solid var(--border);
  min-width: 180px;
}

.g-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px
}

.g-logo .g1 {
  color: #4285F4
}

.g-logo .g2 {
  color: #EA4335
}

.g-logo .g3 {
  color: #FBBC05
}

.g-logo .g4 {
  color: #4285F4
}

.g-logo .g5 {
  color: #34A853
}

.g-logo .g6 {
  color: #EA4335
}

.g-score {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px
}

.g-stars {
  font-size: 1.2rem;
  color: var(--accent-light);
  margin-bottom: 6px
}

.g-count {
  font-size: .8rem;
  color: var(--text-muted)
}

.g-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.g-review {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  box-shadow: var(--sh-sm);
}

.g-review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px
}

.g-reviewer-name {
  font-weight: 700;
  font-size: .875rem
}

.g-reviewer-stars {
  color: var(--accent-light);
  font-size: .85rem
}

.g-reviewer-text {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65
}

/* ===== CALCULATOR ===== */
.calc-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 340px;
}

.calc-form-side {
  padding: 40px
}

.calc-progress-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.calc-step-dot {
  flex: 1;
  height: 4px;
  border-radius: var(--r-full);
  background: var(--bg-3);
  transition: var(--ease);
}

.calc-step-dot.done {
  background: var(--primary)
}

.calc-step {
  display: none;
  animation: fadeUp .3s ease
}

.calc-step.active {
  display: block
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.calc-q {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text)
}

.calc-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calc-option {
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 16px;
  cursor: pointer;
  transition: var(--ease);
  text-align: left;
}

.calc-option:hover {
  border-color: var(--primary-lighter);
  background: rgba(21, 101, 192, .03)
}

.calc-option.sel {
  border-color: var(--primary);
  background: rgba(21, 101, 192, .06)
}

.calc-opt-title {
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 4px
}

.calc-opt-desc {
  font-size: .78rem;
  color: var(--text-muted)
}

.calc-opt-icon {
  font-size: 1.5rem;
  margin-bottom: 8px
}

.calc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px
}

.calc-nav-right {
  display: flex;
  gap: 12px
}

.calc-result-side {
  background: linear-gradient(160deg, var(--primary-dark) 0%, #0a3d78 100%);
  color: #fff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.calc-result-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  opacity: .7;
  margin-top: 20px
}

.calc-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1.2
}

.calc-time {
  font-size: .95rem;
  font-weight: 600;
  opacity: .85
}

.calc-note {
  font-size: .75rem;
  opacity: .65;
  margin-top: 8px;
  line-height: 1.6
}

/* ===== BOOKING FORM ===== */
.booking-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--sh-xl);
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px
}

.form-row-full {
  margin-bottom: 20px
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.form-field label {
  font-weight: 600;
  font-size: .875rem;
  color: var(--text)
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--bg-2);
  font-size: .9rem;
  transition: var(--ease);
  color: var(--text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, .1);
}

.form-field textarea {
  height: 120px;
  resize: vertical
}

.form-footer {
  text-align: center;
  margin-top: 32px
}

.form-note {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 12px
}

/* ===== LOCAL SEO ===== */
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.seo-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px
}

.seo-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px
}

.seo-landmarks {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.seo-landmarks h4 {
  color: var(--secondary);
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px
}

.seo-landmarks ul {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.seo-landmarks li {
  font-size: .875rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.seo-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--sh-lg);
  height: 420px;
}

.seo-map iframe {
  width: 100%;
  height: 100%;
  border: 0
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.cov-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--ease);
}

.cov-badge svg {
  width: 14px;
  height: 14px;
  color: var(--primary)
}

.cov-badge:hover {
  border-color: var(--primary);
  background: rgba(21, 101, 192, .04);
  transform: translateY(-2px)
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.blog-card {
  background: var(--bg);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--primary)
}

.blog-img {
  height: 200px;
  overflow: hidden;
  background: var(--bg-3)
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ease-slow)
}

.blog-card:hover .blog-img img {
  transform: scale(1.06)
}

.blog-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px
}

.blog-cat {
  font-size: .75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 4px 10px;
  background: rgba(21, 101, 192, .08);
  border-radius: var(--r-full)
}

.blog-date {
  font-size: .75rem;
  color: var(--text-light)
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4
}

.blog-excerpt {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px
}

/* ===== FAQ ===== */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--ease);
  background: var(--bg);
}

.faq-item:hover {
  border-color: var(--primary-lighter)
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--sh-md)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: .95rem;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--ease);
  font-size: 1.1rem;
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0d3b72 50%, var(--secondary-dark) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  z-index: 1
}

.cta-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 20px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.1rem;
  opacity: .85;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap
}

/* ===== KONTAK ===== */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.kontak-info {
  display: flex;
  flex-direction: column;
  gap: 0
}

.kontak-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 8px
}

.kontak-subtitle {
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.65
}

.kontak-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px
}

.kontak-item {
  display: flex;
  gap: 16px
}

.kontak-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(21, 101, 192, .08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kontak-icon svg {
  width: 22px;
  height: 22px
}

.kontak-item-title {
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 4px
}

.kontak-item-val {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.55
}

.sosmed-title {
  font-weight: 700;
  margin-bottom: 12px
}

.sosmed-links {
  display: flex;
  gap: 10px
}

.sosmed-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--ease);
}

.sosmed-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(21, 101, 192, .06);
  transform: translateY(-2px)
}

.sosmed-btn svg {
  width: 18px;
  height: 18px
}

.kontak-form-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh-md);
}

.kontak-form-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px
}

/* ===== FOOTER ===== */
footer {
  background: #060E1C;
  color: #7A95B2;
  padding: 72px 0 32px;
  font-size: .875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 18px;
  height: 18px;
  color: #fff
}

.footer-brand p {
  line-height: 1.75;
  color: #7A95B2
}

.footer-copy {
  font-size: .78rem;
  color: #4A6882;
  margin-top: 8px
}

.footer-col h4 {
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 20px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-links a {
  color: #7A95B2;
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 6px
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px
}

.footer-links a::before {
  content: '→';
  font-size: .7rem;
  opacity: 0;
  transition: var(--ease)
}

.footer-links a:hover::before {
  opacity: 1
}

.newsletter {
  margin-top: 4px
}

.newsletter p {
  color: #7A95B2;
  margin-bottom: 16px;
  line-height: 1.65
}

.newsletter-input {
  display: flex;
  gap: 8px;
}

.newsletter-input input {
  flex: 1;
  padding: 11px 16px;
  border-radius: var(--r-md);
  border: 1px solid #1E3050;
  background: #0F1E35;
  color: #fff;
  font-size: .875rem;
}

.newsletter-input input::placeholder {
  color: #4A6882
}

.newsletter-input input:focus {
  border-color: var(--primary)
}

.newsletter-input button {
  padding: 11px 16px;
  border-radius: var(--r-md);
  background: var(--primary-light);
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  white-space: nowrap;
  transition: var(--ease);
}

.newsletter-input button:hover {
  background: var(--primary-dark)
}

.footer-bottom {
  border-top: 1px solid #0F1E35;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 20px
}

.footer-legal a {
  color: #4A6882;
  transition: var(--ease)
}

.footer-legal a:hover {
  color: #fff
}

.footer-made {
  color: #4A6882;
  font-size: .78rem
}

/* ===== FLOATING ===== */
.floating-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 990;
}

.wa-float {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .4);
  transition: var(--ease);
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, .5)
}

.wa-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0
}

.scroll-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  transition: var(--ease);
  opacity: 0;
  pointer-events: none;
}

.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto
}

.scroll-top-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px)
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px
}

/* ===== MODALS ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 28, .7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--ease);
  padding: 24px;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto
}

.modal-box {
  background: var(--bg);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 480px;
  padding: 40px;
  position: relative;
  box-shadow: var(--sh-xl);
  transform: scale(.92) translateY(20px);
  transition: var(--ease);
  border: 1px solid var(--border);
}

.overlay.show .modal-box {
  transform: scale(1) translateY(0)
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--ease);
}

.modal-close-btn:hover {
  background: var(--bg);
  color: var(--text)
}

.modal-tag {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--primary);
  margin-bottom: 12px
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px
}

.modal-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center
  }

  .hero-btns {
    justify-content: center
  }

  .hero-trust {
    max-width: 500px;
    margin: 0 auto
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto
  }

  .hero-float-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px
  }

  .hero-badge-top {
    right: 0
  }

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

  .about-grid,
  .seo-grid,
  .kontak-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .team-grid,
  .services-grid,
  .why-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ba-wrap {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .calc-card {
    grid-template-columns: 1fr
  }

  .calc-result-side {
    padding: 36px
  }

  .coverage-grid {
    grid-template-columns: repeat(3, 1fr)
  }

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

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

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

@media (max-width:768px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .nav-actions .btn {
    display: none
  }

  .hero {
    padding: 120px 0 60px
  }

  .section {
    padding: 64px 0
  }

  .timeline::before {
    left: 20px
  }

  .tl-item,
  .tl-item.left {
    flex-direction: row
  }

  .tl-dot {
    left: 20px !important
  }

  .tl-content {
    width: calc(100% - 56px)
  }

  .tl-item.left .tl-content {
    margin-right: 0;
    margin-left: 36px
  }

  .tl-item.right .tl-content {
    margin-left: 36px
  }

  .google-box {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .g-rating {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 28px
  }

  .booking-card {
    padding: 28px
  }

  .form-row {
    grid-template-columns: 1fr
  }

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

  .footer-grid {
    grid-template-columns: 1fr
  }

  .cta-btns {
    flex-direction: column;
    align-items: center
  }

  .vm-grid {
    grid-template-columns: 1fr
  }

  .hero-badge-top {
    display: none
  }
}

@media (max-width:500px) {

  .team-grid,
  .services-grid,
  .why-grid,
  .blog-grid,
  .video-grid,
  .testi-grid {
    grid-template-columns: 1fr
  }

  .calc-options {
    grid-template-columns: 1fr
  }

  .coverage-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero-trust {
    grid-template-columns: 1fr
  }

  .modal-box {
    padding: 28px 24px
  }

  .wa-float .wa-text {
    display: none
  }

  .wa-float {
    padding: 14px
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr
  }

  .section-title {
    font-size: 1.75rem
  }
}