/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --primary:      #1a56db;
  --primary-dark: #1245b3;
  --secondary:    #6366f1;
  --accent:       #f59e0b;
  --dark:         #0f172a;
  --darker:       #020617;
  --light:        #f8fafc;
  --text:         #334155;
  --muted:        #64748b;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.12);
}

/* ── Base ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}

/* ── Navbar ────────────────────────────────────────────────────────────────── */
#mainNav {
  background: transparent;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 1.25rem 0;
}
#mainNav.scrolled {
  background: rgba(15, 23, 42, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  padding: .75rem 0;
}
.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.navbar-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* make logo white on dark navbar */
  transition: filter .35s;
}
/* When navbar scrolled or logo has own colours, remove invert if user prefers */
.navbar-logo-color { filter: none !important; }
/* Logo warna asli (logo_invert = off) */
.logo-color { filter: none !important; opacity: 1 !important; }
.brand-icon { margin-right: .4rem; }

/* ── Footer logo ────────────────────────────────────────────────────────────── */
.footer-logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  /* Keep footer dark, so invert white logos to show on dark bg */
  filter: brightness(0) invert(1);
  opacity: .85;
}
.nav-link {
  font-size: .92rem;
  font-weight: 500;
  padding: .45rem .9rem !important;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-link.active,
.nav-link:hover { background: rgba(255,255,255,.12); }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a56db 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(99,102,241,.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(26,86,219,.3) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
/* ── Hero slideshow ──────────────────────────────────────────────────────────── */
.hero.has-slides { background: #0a0f1e; }
.hero.has-slides::before { display: none; }
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
/* Overlay — default (no slides) */
.hero-overlay {
  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");
  z-index: 1;
}
/* Overlay — with slides: dark gradient for text readability */
.hero.has-slides .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.50) 0%,
    rgba(0,0,0,.30) 50%,
    rgba(0,0,0,.60) 100%
  );
}
/* Pagination dots */
.hero-dots {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .45rem;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .35s ease;
}
.hero-dot.active {
  width: 26px;
  border-radius: 4px;
  background: #fff;
}
.hero-dot:hover { background: rgba(255,255,255,.75); }
.hero-content { position: relative; z-index: 2; padding: 8rem 1rem 6rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: .45rem 1.25rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: .85;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.hero-actions .btn { border-radius: 50px; padding: .75rem 2rem; font-weight: 600; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Animations ────────────────────────────────────────────────────────────── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .7s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Sections ──────────────────────────────────────────────────────────────── */
.section-padding { padding: 5rem 0; }
.section-tag {
  display: inline-block;
  background: rgba(26,86,219,.1);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Feature cards ──────────────────────────────────────────────────────────── */
.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #c7d2fe;
}
.feature-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--dark);
}
.feature-desc { color: var(--muted); font-size: .95rem; margin: 0; }

/* ── Page cards (services preview) ─────────────────────────────────────────── */
.page-card-link { text-decoration: none; }
.page-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.page-card-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.page-card h5 { color: var(--dark); font-weight: 600; margin-bottom: .75rem; }
.page-card-arrow { color: var(--primary); font-size: .9rem; font-weight: 600; }

/* ── CTA section ────────────────────────────────────────────────────────────── */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a56db, #4f46e5);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,.06) 0%, transparent 70%);
}
.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  position: relative;
}
.cta-subtitle { font-size: 1.1rem; opacity: .85; position: relative; }
.cta-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.cta-contact-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: .7rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s;
}
.cta-contact-btn:hover { background: rgba(255,255,255,.25); color: #fff; }

/* ── Page hero (inner pages) ────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 7rem 0 4rem;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(99,102,241,.2), transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
}
.page-hero-subtitle { font-size: 1.1rem; opacity: .8; }
.breadcrumb-dark { --bs-breadcrumb-divider-color: rgba(255,255,255,.4); }
.breadcrumb-dark .breadcrumb-item a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb-dark .breadcrumb-item.active { color: #fff; }

/* ── Content card ────────────────────────────────────────────────────────────── */
.content-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.content-body {
  padding: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.content-body h1, .content-body h2, .content-body h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--dark);
  margin-top: 1.75rem;
  margin-bottom: .75rem;
}
.content-body h2 { font-size: 1.6rem; }
.content-body h3 { font-size: 1.3rem; }
.content-body img { max-width: 100%; height: auto; border-radius: 8px; }
.content-body a { color: var(--primary); }
.content-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(26,86,219,.05);
  border-radius: 0 8px 8px 0;
  color: var(--muted);
  font-style: italic;
}
.content-footer {
  padding: 1rem 2.5rem;
  background: var(--light);
  border-top: 1px solid #e2e8f0;
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--darker);
  padding: 4rem 0 1.5rem;
  color: #cbd5e1;
}
.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
}
.footer-heading {
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: .92rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact { font-size: .92rem; color: #94a3b8; margin-bottom: .5rem; }
.text-muted-light { color: #64748b; }
.footer-divider { border-color: #1e293b; margin: 2rem 0 1rem; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: #1e293b;
  border-radius: 8px;
  color: #94a3b8;
  margin-right: .4rem;
  text-decoration: none;
  font-size: 1rem;
  transition: background .2s, color .2s;
}
.social-links a:hover { background: var(--primary); color: #fff; }

/* ── 404 ─────────────────────────────────────────────────────────────────────── */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.error-code {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  opacity: .15;
}
.error-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 2rem; }
.error-subtitle { color: var(--muted); }

/* ── Gallery Grid ────────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
@media (min-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.gallery-thumb-btn {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,23,42,.85) 0%,
    rgba(15,23,42,.3)  50%,
    rgba(15,23,42,0)   100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.25rem 1rem;
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery-overlay-inner {
  text-align: center;
  color: #fff;
  transform: translateY(10px);
  transition: transform .35s ease;
}
.gallery-zoom-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: .4rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}
.gallery-overlay-title {
  font-size: .88rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

/* Hover state */
.gallery-thumb-btn:hover img,
.gallery-thumb-btn:focus-visible img {
  transform: scale(1.08);
}
.gallery-thumb-btn:hover .gallery-overlay,
.gallery-thumb-btn:focus-visible .gallery-overlay {
  opacity: 1;
}
.gallery-thumb-btn:hover .gallery-overlay-inner,
.gallery-thumb-btn:focus-visible .gallery-overlay-inner {
  transform: translateY(0);
}
.gallery-thumb-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* ── Lightbox ─────────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 20, .92);
  backdrop-filter: blur(6px);
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* Nav arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-nav:active { transform: translateY(-50%) scale(.92); }
.lightbox-nav.lb-hidden { opacity: 0; pointer-events: none; }

/* Stage */
.lightbox-stage {
  position: relative;
  z-index: 5;
  max-width: min(90vw, 1100px);
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: min(90vw, 1100px);
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 80px rgba(0,0,0,.8);
  display: block;
  opacity: 0;
  transform: scale(.94);
  transition: opacity .35s ease, transform .35s ease;
}
.lightbox.img-loaded .lightbox-img {
  opacity: 1;
  transform: scale(1);
}

/* Loader */
.lightbox-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}
.lb-spinner {
  width: 44px; height: 44px;
  border: 3px solid rgba(255,255,255,.15);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lbSpin .7s linear infinite;
}
@keyframes lbSpin { to { transform: rotate(360deg); } }
.lightbox.img-loaded .lightbox-loader { display: none; }

/* Caption */
.lightbox-caption {
  position: relative;
  z-index: 5;
  text-align: center;
  color: #fff;
  padding: .75rem 2rem .5rem;
  max-width: 700px;
  min-height: 60px;
}
.lb-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .25rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.lb-desc {
  font-size: .9rem;
  opacity: .8;
  margin-bottom: .25rem;
}
.lb-counter {
  font-size: .78rem;
  opacity: .5;
  letter-spacing: .5px;
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content { padding: 7rem 1rem 4rem; }
  .section-padding { padding: 3rem 0; }

  .lightbox-nav { width: 40px; height: 40px; font-size: 1.1rem; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
  .lightbox-caption { padding: .5rem 3rem; }
}

/* ── Contact Page ────────────────────────────────────────────────────────────── */

/* Intro */
.contact-intro-section {
  padding: 2.5rem 0 .5rem;
}
.contact-intro-text {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

/* Quick-action pills bar */
.contact-quickbar {
  background: linear-gradient(135deg, #1a56db 0%, #6366f1 100%);
  padding: 1.5rem 0;
}
.contact-quick-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.contact-quick-pill {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  padding: .75rem 1.4rem;
  color: #fff;
  text-decoration: none;
  transition: background .2s, transform .2s;
  min-width: 200px;
}
.contact-quick-pill:hover {
  background: rgba(255,255,255,.28);
  transform: translateY(-2px);
  color: #fff;
}
.pill-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.pill-wa   .pill-icon { background: rgba(37,211,102,.25); }
.pill-email .pill-icon { background: rgba(251,146,60,.25); }
.pill-text { display: flex; flex-direction: column; line-height: 1.3; }
.pill-label { font-size: .72rem; opacity: .8; font-weight: 500; letter-spacing: .3px; }
.pill-value { font-size: .95rem; font-weight: 700; }

/* Info card */
.contact-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0,0,0,.07);
  border: 1px solid #e8eef6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.contact-card-header {
  background: linear-gradient(135deg, #1a56db, #6366f1);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.1rem 1.5rem;
  letter-spacing: .2px;
}
.contact-card-body { padding: .5rem 1.5rem 1.5rem; flex: 1; }

/* Info rows */
.cinfo-row {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: .9rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.cinfo-row:last-child { border-bottom: none; }
.cinfo-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.bg-blue-soft   { background: #eff6ff; }
.bg-indigo-soft { background: #eef2ff; }
.bg-green-soft  { background: #f0fdf4; }
.bg-orange-soft { background: #fff7ed; }
.bg-teal-soft   { background: #f0fdfa; }
.bg-yellow-soft { background: #fefce8; }
.text-indigo    { color: #6366f1; }
.text-orange    { color: #f97316; }
.text-teal      { color: #14b8a6; }
.cinfo-label {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .6px;
  color: #94a3b8; margin-bottom: .15rem;
}
.cinfo-val {
  font-size: .93rem; color: #334155; line-height: 1.6;
}
.contact-link {
  color: var(--primary); text-decoration: none; transition: color .2s;
}
.contact-link:hover { color: var(--primary-dark); text-decoration: underline; }

/* Map */
.contact-map-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,.1);
  border: 1px solid #e8eef6;
}
.contact-map-empty {
  border-radius: 20px;
  background: #f8fafc;
  border: 2px dashed #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  color: #cbd5e1;
}
.contact-map-empty i   { font-size: 3rem; }
.contact-map-empty p   { margin: .5rem 0 0; font-size: .95rem; }

/* WhatsApp form section */
.contact-wa-section {
  background: linear-gradient(160deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 4rem 0;
  border-top: 1px solid #bbf7d0;
}
.wa-form-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(37,211,102,.12);
  border: 1px solid #bbf7d0;
  overflow: hidden;
}
.wa-form-header {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.wa-form-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.wa-form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem; font-weight: 700;
  margin: 0 0 .25rem;
}
.wa-form-sub { font-size: .88rem; opacity: .85; margin: 0; }
.wa-form-body { padding: 2rem; }
.wa-label {
  display: block;
  font-size: .82rem; font-weight: 600;
  color: #374151; margin-bottom: .4rem;
}
.wa-input {
  width: 100%;
  border: 1.5px solid #d1fae5;
  border-radius: 10px;
  padding: .6rem .9rem;
  font-size: .93rem;
  color: #1f2937;
  background: #f0fdf4;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
  font-family: inherit;
}
.wa-input:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
  background: #fff;
}
.wa-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  border-radius: 8px;
  padding: .6rem 1rem;
  font-size: .88rem;
  margin-top: 1rem;
  align-items: center;
}
.wa-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.25rem;
  padding: .85rem;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  font-family: inherit;
  letter-spacing: .3px;
}
.wa-send-btn:hover { opacity: .9; transform: translateY(-1px); }
.wa-send-btn:active { transform: translateY(0); }

@media (max-width: 991px) {
  .contact-card { margin-bottom: 1.5rem; }
  .contact-map-frame { min-height: 320px; }
}
@media (max-width: 576px) {
  .contact-quick-pill { min-width: 100%; justify-content: flex-start; }
  .wa-form-header { flex-direction: column; text-align: center; }
  .wa-form-body { padding: 1.25rem; }
}

