/* Nisa Writes — Content Writer & Copywriter Portfolio */
/* Charcoal-Teal Editorial Minimal */

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

:root {
  --primary: #37474f;
  --accent: #80cbc4;
  --accent-dark: #4db6ac;
  --bg: #fafafa;
  --bg-card: #ffffff;
  --text: #263238;
  --text-muted: #607d8b;
  --text-light: #90a4ae;
  --border: #eceff1;
  --border-accent: #b2dfdb;
  --shadow: 0 2px 12px rgba(55,71,79,0.08);
  --shadow-hover: 0 6px 24px rgba(55,71,79,0.14);
  --radius: 4px;
  --radius-lg: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* ─── DEMO BAR ─── */
.demo-bar {
  background: var(--primary);
  color: #eceff1;
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}
.demo-bar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.demo-bar a:hover { text-decoration: underline; }

/* ─── HEADER / NAV ─── */
header {
  background: var(--bg-card);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent-dark); }

/* Checkbox hack mobile menu */
#nav-toggle { display: none; }
.nav-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s;
}
#nav-toggle:checked ~ .nav-label span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#nav-toggle:checked ~ .nav-label span:nth-child(2) {
  opacity: 0;
}
#nav-toggle:checked ~ .nav-label span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
}
nav ul li a {
  display: block;
  padding: 8px 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--primary);
  background: #eceff1;
}
nav ul li a.nav-cta {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
}
nav ul li a.nav-cta:hover {
  background: var(--accent-dark);
}

@media (max-width: 768px) {
  .nav-label { display: flex; }
  nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 2px solid var(--accent);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  #nav-toggle:checked ~ nav {
    max-height: 400px;
  }
  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 20px;
  }
  nav ul li a { padding: 12px 0; border-radius: 0; border-bottom: 1px solid var(--border); }
}

/* ─── UTILITIES ─── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.section { padding: 72px 0; }
.section-alt { background: #eceff1; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}
.section-header { margin-bottom: 48px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent);
}
.btn-ghost:hover {
  background: var(--accent);
  color: var(--primary);
}

/* ─── CARDS ─── */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* ─── TAG / BADGE ─── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--border-accent);
  color: var(--primary);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.tag-primary {
  background: var(--accent);
  color: var(--primary);
}

/* ─── DIVIDER ─── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0 32px;
}

/* ─── INDEX PAGE ─── */
.hero {
  background: var(--primary);
  color: #eceff1;
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(128,203,196,0.08);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 40%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(128,203,196,0.05);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #eceff1;
  letter-spacing: -0.02em;
}
.hero-title em {
  color: var(--accent);
  font-style: normal;
}
.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #b0bec5;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Avatar SVG container */
.hero-avatar {
  flex-shrink: 0;
}
.avatar-svg {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 4px solid rgba(128,203,196,0.3);
  display: block;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-avatar { order: -1; margin: 0 auto; }
  .hero-cta { justify-content: center; }
  .section-sub { max-width: 100%; }
}

/* Stats bar */
.stats-bar {
  background: var(--accent);
  padding: 28px 0;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  opacity: 0.8;
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* Services preview (home) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--accent-dark);
}
.service-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Portfolio preview (home) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.porto-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.porto-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.porto-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, #eceff1 0%, #cfd8dc 100%);
  position: relative;
  overflow: hidden;
}
.porto-visual-accent {
  background: linear-gradient(135deg, #b2dfdb 0%, #80cbc4 100%);
}
.porto-body { padding: 20px; }
.porto-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 6px;
}
.porto-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.porto-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* Testimonial (home) */
.testimonial-block {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #eceff1;
  text-align: center;
  position: relative;
}
.testimonial-quote {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
  color: #cfd8dc;
}
.testimonial-author {
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
}
.testimonial-role {
  color: var(--text-light);
  font-size: 13px;
  margin-top: 4px;
}
.quote-mark {
  font-size: 80px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

/* CTA section (home) */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #455a64 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-section .section-title { color: #eceff1; }
.cta-section .section-sub { color: #b0bec5; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── PORTOFOLIO PAGE ─── */
.porto-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.porto-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.porto-full-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.porto-full-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.porto-full-visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg1 { background: linear-gradient(135deg, #b2dfdb, #80cbc4); }
.bg2 { background: linear-gradient(135deg, #cfd8dc, #b0bec5); }
.bg3 { background: linear-gradient(135deg, #eceff1, #cfd8dc); }
.bg4 { background: linear-gradient(135deg, #80cbc4, #4db6ac); }
.bg5 { background: linear-gradient(135deg, #37474f, #546e7a); }
.bg6 { background: linear-gradient(135deg, #455a64, #37474f); }

.porto-full-body { padding: 20px; }
.porto-full-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 6px;
}
.porto-full-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.porto-full-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.porto-tags { display: flex; flex-wrap: wrap; gap: 6px; }

@media (max-width: 900px) {
  .porto-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .porto-full-grid { grid-template-columns: 1fr; }
}

/* Featured porto */
.porto-featured {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: 48px;
}
.porto-feat-visual {
  background: linear-gradient(135deg, var(--primary), #546e7a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 12px;
}
.porto-feat-body { padding: 36px; }
.porto-feat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.porto-feat-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.porto-feat-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.porto-feat-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.porto-feat-meta-item { font-size: 13px; }
.porto-feat-meta-item strong { color: var(--primary); display: block; }
.porto-feat-meta-item span { color: var(--text-muted); }

@media (max-width: 700px) {
  .porto-featured { grid-template-columns: 1fr; }
}

/* ─── LAYANAN PAGE ─── */
.layanan-hero {
  background: var(--primary);
  padding: 64px 0;
  color: #eceff1;
  text-align: center;
}
.layanan-hero .section-label { color: var(--accent); }
.layanan-hero .section-title { color: #eceff1; margin: 0 auto 16px; }
.layanan-hero .section-sub { color: #b0bec5; margin: 0 auto; }

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.layanan-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.layanan-card-head {
  background: var(--primary);
  padding: 28px 28px 24px;
  color: #eceff1;
}
.layanan-card-head.accent {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--primary);
}
.layanan-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 8px;
}
.layanan-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.layanan-tagline {
  font-size: 14px;
  opacity: 0.8;
}
.layanan-card-body { padding: 28px; }
.layanan-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.layanan-include {
  list-style: none;
  margin-bottom: 24px;
}
.layanan-include li {
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.layanan-include li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 6px;
}
.layanan-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.layanan-price span { font-size: 13px; color: var(--text-muted); font-weight: 400; }

@media (max-width: 760px) {
  .layanan-grid { grid-template-columns: 1fr; }
}

/* Proses kerja */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-list::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-accent);
}
.process-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 32px 0;
  position: relative;
}
.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}
.process-content { padding-top: 10px; }
.process-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.process-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Testimoni layanan */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow);
}
.testi-stars {
  color: var(--accent-dark);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testi-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--primary); }
.testi-pos { font-size: 12px; color: var(--text-muted); }

@media (max-width: 860px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ─── TENTANG PAGE ─── */
.about-hero {
  background: var(--primary);
  padding: 64px 0;
}
.about-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-avatar-wrap {
  display: flex;
  justify-content: center;
}
.about-avatar-svg {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 6px solid rgba(128,203,196,0.35);
}
.about-hero-text .section-label { color: var(--accent); }
.about-hero-text .section-title { color: #eceff1; }
.about-hero-text p { color: #b0bec5; font-size: 16px; line-height: 1.8; }

@media (max-width: 760px) {
  .about-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .about-avatar-wrap { order: -1; }
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.skill-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--border);
}
.skill-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.skill-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  border-radius: 3px;
}

@media (max-width: 640px) {
  .skills-grid { grid-template-columns: 1fr; }
}

.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: var(--border-accent);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.timeline-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--accent-dark);
}
.value-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.value-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ─── KONTAK PAGE ─── */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.kontak-info h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.kontak-info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.kontak-channels { display: flex; flex-direction: column; gap: 12px; }
.kontak-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}
.kontak-channel:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.kontak-channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.kontak-channel-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.kontak-channel-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Form */
.form-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 36px;
}
.form-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(128,203,196,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 800px) {
  .kontak-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Booking box */
.booking-box {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #eceff1;
  margin-top: 24px;
}
.booking-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--accent); }
.booking-box p { font-size: 14px; color: #b0bec5; line-height: 1.7; margin-bottom: 20px; }
.avail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #cfd8dc;
  margin-bottom: 8px;
}
.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.avail-dot.full { background: #ef9a9a; }

/* ─── FOOTER ─── */
footer {
  background: var(--primary);
  color: #90a4ae;
  padding: 48px 0 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { color: #eceff1; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 12px;
  color: #78909c;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 14px;
  color: #78909c;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── MISC ─── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.flex-center { display: flex; justify-content: center; }

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, #b2dfdb 0%, #e0f2f1 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 4px solid var(--accent-dark);
}
.highlight-box p {
  font-size: 15px;
  color: var(--primary);
  line-height: 1.8;
  margin: 0;
}
