
/* ===== TOKENS ===== */
:root {
  --navy: #003D66;
  --navy-deep: #003D66;
  --sky: #30A0E0;
  --gold: #f4b458;
  --gold-light: #FFE3B3;
  --cream: #F4F8FB;
  --text: #0B2E4A;
  --muted: #5C7285;
  --white: #ffffff;
  --green: #2FA65C;
  --surface: #EFF5F9;
  --border: rgba(0,107,185,0.10);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --r-sm: 12px;
  --r-md: 15px;
  --r-lg: 15px;
  --r-xl: 15px;

  --shadow-soft: 0 4px 24px rgba(0,107,185,0.10);
  --shadow-card: 0 8px 32px rgba(0,107,185,0.14);
  --shadow-float: 0 16px 48px rgba(0,61,102,0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-left: -10px;
  margin-right: 16px;
  min-width: 0;
  flex-shrink: 1;
}

.nav-logo-img {
  height: 20px;
  width: auto;
  max-width: 100%;
  display: block;
}

@media (max-width: 380px) {
  .nav-logo-img { height: 5px; }
}

.footer-brand-logo {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-wa {
  background: var(--green);
  color: white;
  padding: 9px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.nav-wa:hover { transform: scale(1.03); }

.menu-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 16px;
  transition: 0.2s;
}

.menu-btn:hover { background: var(--cream); }

/* DRAWER MENU */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  backdrop-filter: blur(4px);
}

.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100%;
  background: white;
  z-index: 1200;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 24px 20px;
  overflow-y: auto;
}

.drawer.open { right: 0; }

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--surface);
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  transition: 0.2s;
}

.drawer nav a i { color: var(--navy); width: 20px; }
.drawer nav a:hover { color: var(--navy); }

.drawer-cta {
  margin-top: 28px;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.2s;
}

.drawer-cta:hover { background: var(--gold); color: var(--navy); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: calc(100svh - 64px);
  min-height: 500px;
  overflow: hidden;
}

.hero-slides { height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,61,102,0.92) 0%,
    rgba(0,61,102,0.5) 40%,
    rgba(0,61,102,0.1) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 40px;
  animation: heroUp 0.8s ease both;
}

@keyframes heroUp {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,201,115,0.2);
  border: 1px solid rgba(255,201,115,0.4);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 7vw, 52px);
  color: white;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 340px;
}

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

.btn-wa-hero {
  background: var(--green);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(47,166,92,0.4);
  transition: 0.2s;
}

.btn-wa-hero:hover { transform: scale(1.03); }

.btn-outline-hero {
  background: rgba(255,255,255,0.12);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  transition: 0.2s;
}

.btn-outline-hero:hover { background: rgba(255,255,255,0.2); }

/* HERO DOTS */
.hero-dots {
  position: absolute;
  bottom: 16px;
  right: 24px;
  display: flex;
  gap: 6px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 40%;
  background: rgba(255,255,255);
  transition: 0.3s;
  cursor: pointer;
}

.hero-dot.active {
  width: 20px;
  border-radius: 3px;
  background: var(--white);
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--navy);
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  padding: 20px 8px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

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

.stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===== SECTION HEADER ===== */
.section-head {
  padding: 0 20px;
  margin-bottom: 24px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 6vw, 36px);
  color: var(--navy);
  line-height: 1.2;
}

.section-title em { font-style: italic; }

.section-sub {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--cream);
  padding: 52px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 20px;
}

.service-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--border);
  transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content:'';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}

.service-card:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-card);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
  color: var(--t);
  transition: 0.3s;
}

.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--gold);
}

.service-card h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
a.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.service-card h3 {
  text-decoration: none;
  color: inherit;
}
a.service-card:hover {
  text-decoration: none;
}
/* FIX: Footer service links - hapus underline & inherit color */
.footer-links a {
  text-decoration: none;
  color: inherit;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* ===== DESIGN STYLE FILTER ===== */
.design-section {
  padding: 52px 0;
  background: var(--off-white);
  overflow: hidden;
}

.design-tabs {
  display: flex;
  gap: 8px;
  padding: 0 20px;
  margin: 20px 0 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.design-tabs::-webkit-scrollbar { display: none; }

.dtab {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s;
  font-family: var(--font-body);
}
.dtab.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 20px;
}

.design-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.design-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.design-item:hover img { transform: scale(1.06); }

.design-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,61,102,0.75), transparent 55%);
  opacity: 0;
  transition: 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  pointer-events: none;
}

.design-item:hover .design-item-overlay { opacity: 1; }

.design-item-overlay span {
  color: white;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

/* ===== PORTFOLIO ===== */
.portfolio-section {
  padding: 52px 0;
  background: var(--cream);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 20px;
  margin-bottom: 24px;
}

.portfolio-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}

.portfolio-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.portfolio-item:hover img { transform: scale(1.06); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,61,102,0.7), transparent 50%);
  opacity: 0;
  transition: 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay span {
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.btn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 20px;
  padding: 16px;
  background: var(--navy);
  color: white;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s;
}

.btn-more:hover { background: var(--gold); color: var(--navy); }

/* ===== ABOUT ===== */
.about-section {
  padding: 52px 20px;
  background: white;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 28px;
}

.about-image-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 600;
}

.about-image-badge span {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 2px;
}

.about-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--navy);
  color: white;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s;
}

.btn-about:hover { background: var(--gold); color: var(--navy); }

/* ===== WHY US ===== */
.why-section {
  padding: 52px 20px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content:'';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,201,115,0.06);
}

.why-section .section-eyebrow { color: var(--gold); }
.why-section .section-title { color: white; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: 0.3s;
}

.why-card:hover { background: rgba(255,255,255,0.08); }

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--);
}

.why-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== TESTIMONI ===== */
.testi-section {
  padding: 52px 0;
  background: var(--cream);
}

.testi-slides {
  display: flex;
  gap: 14px;
  padding: 8px 20px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testi-slides::-webkit-scrollbar { display: none; }

.testi-item {
  min-width: 60vw;
  max-width: 70vw;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: block;
}

.testi-item.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.testi-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.testi-img {
  position: relative;
}

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

.testi-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,61,102,0.8), transparent 50%);
}

.testi-body {
  padding: 20px;
}

.testi-stars {
  color: #F5B84D;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testi-author-info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.testi-author-info span {
  font-size: 12px;
  color: var(--muted);
}

.testi-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: 0.3s;
}

.testi-dot.active { background: var(--navy); width: 24px; border-radius: 4px; }

/* ===== KALKULATOR ===== */
.calc-section {
  padding: 52px 20px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.calc-section::after {
  content:'';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,201,115,0.07);
}

.calc-section .section-eyebrow { color: var(--gold); }
.calc-section .section-title { color: white; }
.calc-section .section-sub { color: rgba(255,255,255,0.55); }

.calc-box {
  background: white;
  border-radius: var(--r-xl);
  padding: 28px 20px;
  margin-top: 28px;
  box-shadow: var(--shadow-float);
}

.calc-box label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  margin-top: 16px;
}

.calc-box label:first-of-type { margin-top: 0; }

.calc-box input,
.calc-box select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  transition: 0.2s;
  outline: none;
}

.calc-box input:focus,
.calc-box select:focus {
  border-color: var(--navy);
  background: white;
}

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

.btn-calc {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-calc:hover { background: var(--gold); color: var(--navy); }

.calc-result {
  display: none;
  margin-top: 20px;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  border: 1.5px solid var(--border);
}

.calc-result.show { display: block; }

/* ===== FAQ ===== */
.faq-section {
  padding: 52px 20px;
  background: white;
}

.faq-list { margin-top: 28px; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: 0.2s;
}

.faq-item.open { border-color: var(--navy); }

.faq-q {
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  gap: 12px;
  line-height: 1.4;
}

.faq-q i {
  flex-shrink: 0;
  color: var(--navy);
  transition: 0.3s;
  font-size: 12px;
}

.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  padding: 0 18px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== KONSULTASI FORM ===== */
.konsultasi-section {
  padding: 52px 20px;
  background: var(--cream);
}

.konsultasi-box {
  background: white;
  border-radius: var(--r-xl);
  padding: 28px 20px;
  box-shadow: var(--shadow-card);
}

.konsultasi-box label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  margin-top: 16px;
}

.konsultasi-box label:first-of-type { margin-top: 0; }

.konsultasi-box input,
.konsultasi-box select,
.konsultasi-box textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  transition: 0.2s;
  outline: none;
  resize: vertical;
}

.konsultasi-box input:focus,
.konsultasi-box select:focus,
.konsultasi-box textarea:focus {
  border-color: var(--navy);
  background: white;
}

.btn-submit-wa {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.2s;
}

.btn-submit-wa:hover { background: #268A4C; }

/* ===== CTA BANNER ===== */
.cta-section {
  padding: 52px 20px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content:'';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,201,115,0.12) 0%, transparent 70%);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 7vw, 40px);
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
}

.cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  position: relative;
}

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 32px rgba(47,166,92,0.35);
  transition: 0.2s;
  position: relative;
}

.btn-cta-wa:hover { transform: scale(1.04); }

/* ===== FOOTER ===== */
footer {
  background: var(--text);
  padding: 48px 20px 24px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
}

.footer-brand-name span { color: var(--gold); }

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 32px 0;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
  transition: 0.2s;
}

.footer-links a:hover { color: white; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-item a:hover { color: white; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s;
}

.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.footer-map {
  margin-top: 20px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  margin-top: 32px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-poweredby {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.22);
}

/* ===== FLOATING WA ===== */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  background: var(--green);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(47,166,92,0.45);
  transition: 0.3s;
  animation: pulse-wa 2.5s ease infinite;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(47,166,92,0.45); }
  50% { box-shadow: 0 8px 36px rgba(47,166,92,0.7); }
}

.float-wa:hover { transform: scale(1.1); }

/* ===== FOOTER COLS GRID ===== */
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 0;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== PROSES KERJA ===== */
.proses-section {
  padding: 52px 20px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.proses-section::before {
  content:'';
  position:absolute;
  top:-100px; right:-100px;
  width:300px; height:300px;
  border-radius:50%;
  background: rgba(255,201,115,0.06);
}
.proses-section .section-eyebrow { color: var(--gold); }
.proses-section .section-title { color: white; }

.proses-list { margin-top: 32px; position: relative; }
.proses-list::before {
  content:'';
  position:absolute;
  left: 23px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(255,201,115,0.1));
}
.proses-step {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
}
.proses-step:last-child { margin-bottom: 0; }
.proses-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(255,201,115,0.2);
}
.proses-body { padding-top: 6px; }
.proses-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.proses-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.proses-payment {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,201,115,0.18);
  color: var(--gold-light);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: 0.3px;
}

/* ===== GARANSI BANNER ===== */
.garansi-section {
  background: linear-gradient(135deg, var(--gold) 0%, #fff 100%);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.garansi-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}
.garansi-text h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.garansi-text p { font-size: 13px; color: rgba(0,107,185,0.7); line-height: 1.5; }

/* ===== COUNTER SECTION ===== */
.counter-section {
  background: var(--cream);
  padding: 52px 20px;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.counter-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
}
.counter-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.counter-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 10px;
}
.counter-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.counter-label { font-size: 12px; color: var(--muted); font-weight: 500; }

/* ===== PAKET HARGA ===== */
.pricing-section {
  padding: 52px 0 52px;
  background: var(--off-white);
}
.pricing-scroll {
  display: flex;
  gap: 14px;
  padding: 8px 20px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pricing-scroll::-webkit-scrollbar { display: none; }

.pricing-card {
  min-width: 280px;
  max-width: 300px;
  background: white;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  overflow: hidden;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(255,201,115,0.2);
}

.pricing-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
}

.pricing-head {
  background: var(--navy);
  padding: 22px 20px 18px;
}
.pricing-card.popular .pricing-head {
  background: linear-gradient(135deg, var(--navy) 0%, #123A57 100%);
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
  margin-bottom: 4px;
}
.pricing-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.pricing-price span { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 400; }
.pricing-old {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-body { padding: 18px 20px 22px; }

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--surface);
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}
.pricing-feature:last-of-type { border-bottom: none; }
.pricing-feature i {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 12px;
}
.pricing-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.btn-pricing-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--green);
  color: white;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s;
}
.btn-pricing-wa:hover { background: #268A4C; }
.pricing-revisi {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.pricing-revisi i { color: var(--green); }

/* PRICING TABS */
.pricing-tabs {
  display: flex;
  gap: 8px;
  padding: 0 20px;
  margin-bottom: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pricing-tabs::-webkit-scrollbar { display: none; }
.ptab {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s;
  font-family: var(--font-body);
}
.ptab.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ===== AREA LAYANAN ===== */
.area-section {
  padding: 52px 20px;
  background: white;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.area-chip {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  transition: 0.2s;
  cursor: default;
}
.area-chip:hover { background: var(--navy); color: white; }
.area-chip i { display: block; color: var(--gold); font-size: 16px; margin-bottom: 5px; }
.area-note {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding: 14px;
  background: var(--cream);
  border-radius: var(--r-md);
  border: 1px dashed var(--border);
}

/* ===== BLOG PREVIEW ===== */
.blog-section {
  padding: 52px 0;
  background: var(--cream);
}
.blog-scroll {
  display: flex;
  gap: 14px;
  padding: 8px 20px 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.blog-scroll::-webkit-scrollbar { display: none; }
.blog-card {
  min-width: 72vw;
  max-width: 72vw;
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
  flex-shrink: 0;
  text-decoration: none;
  transition: 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.blog-card-body { padding: 16px; }
.blog-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.blog-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card-meta i { color: var(--gold); font-size: 11px; }

/* ===== RESPONSIVE (tablet+) ===== */

/* ===== PAGE HERO ABOUT ===== */

/* ===== ABOUT FULL SECTION ===== */

.about-full-section .section-eyebrow {
  margin-bottom: 12px;
}
.about-full-section .section-title {
  margin-bottom: 28px;
}

/* ===== STATS ROW ===== */

/* ===== VISI MISI ===== */

.visi-misi .section-head {
  padding: 0;
  margin-bottom: 36px;
  text-align: center;
}

/* ===== WHY SECTION (inherited from style.css, keep as is) ===== */

/* ===== AREA SECTION (inherited) ===== */

/* ===== FAQ (inherited) ===== */

/* ===== KONSULTASI (inherited) ===== */

/* Responsive */

  
/* ===== PAGE HERO ===== */

/* ===== FILTER BAR ===== */

.filter-btn.active {
  background: #FFC973;
  border-color: #FFC973;
  color: #fff;
  font-weight: 600;
}

/* ===== BLOG SECTION WRAPPER ===== */

/* ===== BLOG GRID ===== */

/* ===== BLOG CARD ===== */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid #F4F8FB;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.blog-card-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: #0B2E4A;
  line-height: 1.4;
  margin-bottom: 14px;
  flex: 1;
}

.blog-card:hover .blog-card-read { gap: 10px; }

/* ===== FEATURED (first card full width) ===== */
.blog-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.blog-card.featured .blog-card-img {
  width: 42%;
  flex-shrink: 0;
  aspect-ratio: auto;
  height: 100%;
  min-height: 200px;
}
.blog-card.featured .blog-card-img-placeholder {
  width: 42%;
  flex-shrink: 0;
  aspect-ratio: auto;
  min-height: 200px;
}
.blog-card.featured .blog-card-body { padding: 28px 28px; }
.blog-card.featured .blog-card-title {
  font-size: 1.4rem;
  margin-bottom: 18px;
}

/* ===== PAGINATION ===== */

.page-btn.active {
  background: #FFC973;
  border-color: #FFC973;
  color: #fff;
}

/* ===== EMPTY STATE ===== */

/* ===== WHY SECTION ===== */
/* inherits from style.css via .why-section */

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  
  .blog-card.featured { flex-direction: column; }
  .blog-card.featured .blog-card-img,
  .blog-card.featured .blog-card-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    min-height: unset;
    height: auto;
  }
  .blog-card.featured .blog-card-title { font-size: 1.15rem; }
  
}
/* ===== PAGE HERO ===== */

/* ===== STATS BAR ===== */

/* ===== FILTER BAR ===== */

.gfilter-btn.active {
  background: #FFC973;
  border-color: #FFC973;
  color: #fff;
  font-weight: 600;
}

.gfilter-btn:not(.active) .gfilter-count {
  background: #F4F8FB;
  color: #999;
}

/* ===== GALERI MAIN ===== */

/* ===== MASONRY GRID ===== */

/* Hidden items */
.galeri-item.hidden { display: none; }

/* ===== EMPTY STATE ===== */

/* ===== INFO ROW ===== */

/* ===== LIGHTBOX ===== */

@keyframes lbIn { from { opacity: 0 } to { opacity: 1 } }
.lightbox.open { display: flex; }

/* ===== RESPONSIVE ===== */

/* ===== Harga ===== */

/* ===== STICKY NAV ===== */

.pnav-btn:hover,
.pnav-btn.active { color: #FFC973; border-bottom-color: #FFC973; font-weight: 600; }

/* ===== MAIN WRAPPER ===== */

/* ===== SECTION BLOCK ===== */

/* ===== DESAIN PACKAGE CARDS ===== */

.pkg-card.popular {
  border-color: #FFC973;
  box-shadow: 0 4px 20px rgba(255,201,115,0.2);
}

/* ===== KALKULATOR ===== */

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

.btn-calc {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #FFC973, #FFE3B3);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .2s;
}
.btn-calc:hover { opacity: 0.9; }
.calc-result {
  margin-top: 16px;
  background: linear-gradient(135deg, #0B2E4A, #0B2E4A);
  border-radius: 12px;
  padding: 18px 20px;
  display: none;
}
.calc-result.show { display: block; }

/* ===== FLAT PRICE TABLE ===== */

/* ===== OUTSOURCING CARDS ===== */

/* ===== NEGO BANNER ===== */

/* ===== CTA BLOCK ===== */

/* ===== PROSES KERJA (compact) ===== */

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  
  
  .calc-row { grid-template-columns: 1fr; }
  
}
@media (max-width: 460px) {
  
  
/* ---- Privacy Polish ---- */

/* ---- READING PROGRESS ---- */

/* ---- BACK TO TOP ---- */

/* ---- PP WRAPPER ---- */

/* ---- META INFO ---- */

/* ---- TOC ---- */

/* ---- INTRO BOX ---- */

/* ---- SECTION ---- */

.pp-section.visible { opacity: 1; transform: none; }

/* ---- INFO CARDS ---- */

/* ---- HIGHLIGHT BOX ---- */

/* ---- LIST ---- */

/* ---- TABLE ---- */

/* ---- RIGHTS GRID ---- */

/* ---- CONTACT CARD ---- */

/* ---- RESPONSIVE ---- */

/* ===== Service===== */

/* ===== STATS BAR ===== */

/* ===== NAV ANCHOR ===== */

.snav-btn.active { color: #FFC973; border-bottom-color: #FFC973; font-weight: 600; }

/* ===== SERVICE WRAPPER ===== */

/* ===== SERVICE BLOCK ===== */

/* Header row */

/* Description */

/* Feature list */

/* Gaya desain pills (for jasa arsitek) */

/* Proses steps */

/* CTA row */

/* Price badge */

/* ===== HIGHLIGHT BOX ===== */

/* ---- Language Toggle ---- */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,201,115,0.15);
  border: 1.5px solid rgba(255,201,115,0.5);
  border-radius: 20px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #FFC973;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.lang-toggle:hover {
  background: rgba(255,201,115,0.3);
  border-color: #FFC973;
}
.lang-toggle .lang-flag { font-size: 14px; }
.lang-toggle .lang-label { font-size: 11px; }

/* ---- Translate Loading Overlay ---- */
#translateOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
#translateOverlay.active { display: flex; }
.translate-loader {
  width: 48px; height: 48px;
  border: 4px solid rgba(255,201,115,0.3);
  border-top-color: #FFC973;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.translate-loader-text {
  color: #fff;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- EN/ID Active indicator ---- */

/* ===== RESPONSIVE ===== */
}
/* ===== IMAGE LIGHTBOX (zoom preview) ===== */
.zoomable { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,42,71,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-figure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.94);
  transition: transform 0.25s ease;
}

.lightbox.open .lightbox-figure {
  transform: scale(1);
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-float);
  object-fit: contain;
  background: #111;
}

.lightbox-figure figcaption {
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
  opacity: 0.85;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  z-index: 2;
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  z-index: 2;
}
.lightbox-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

@media (max-width: 480px) {
  .lightbox-nav { width: 38px; height: 38px; font-size: 14px; }
  .lightbox-close { width: 38px; height: 38px; font-size: 14px; }
  .lightbox { padding: 50px 12px; }
}
