/* ==========================================================================
   Joba Industries - Modern Industrial Design System
   Optimized for Cloudflare Pages
   ========================================================================== */

:root {
  /* Brand Industrial Color Tokens */
  --brand-primary: #d96b27;
  --brand-primary-dark: #b85217;
  --brand-primary-light: #fbeee6;
  --brand-secondary: #c2410c;
  --brand-accent-amber: #f59e0b;
  --brand-gradient: linear-gradient(135deg, #d96b27 0%, #ea580c 50%, #f59e0b 100%);
  --brand-gradient-subtle: linear-gradient(135deg, rgba(217, 107, 39, 0.08) 0%, rgba(245, 158, 11, 0.05) 100%);

  /* Neutrals & Slate Surfaces */
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-alt: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-dark-surface: #1e293b;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #ffffff;

  --border-subtle: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-focus: #d96b27;

  /* WhatsApp Color */
  --color-wa: #25d366;
  --color-wa-dark: #128c7e;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 12px 32px -4px rgba(15, 23, 42, 0.12), 0 4px 12px -2px rgba(217, 107, 39, 0.08);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile sticky action bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

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

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

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-announcement {
  background-color: var(--bg-dark);
  color: #cbd5e1;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0;
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.announcement-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.location-pin {
  display: none;
}

@media (min-width: 768px) {
  .location-pin {
    display: inline-block;
  }
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #f8fafc;
  font-weight: 600;
}

.phone-link:hover {
  color: var(--brand-accent-amber);
}

.icon-inline {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
}

.brand-link {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 900px) {
  .header-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link:hover {
  color: var(--brand-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gradient);
  transition: width var(--transition-normal);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .header-inner {
    height: 64px;
  }
  .brand-logo {
    height: 32px;
  }
  .header-actions #header-whatsapp-btn {
    display: none; /* Already available prominently in the mobile bottom sticky bar */
  }
  .header-actions .btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  line-height: 1.2;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(217, 107, 39, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 107, 39, 0.38);
  color: #ffffff;
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--text-primary);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-alt);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-outline:hover {
  background-color: var(--brand-primary-light);
}

.btn-whatsapp {
  background-color: var(--color-wa);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: var(--color-wa-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-lg {
  padding: 0.875rem 1.6rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 3.5rem 0 4rem;
  background: radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(217, 107, 39, 0.08) 0%, transparent 40%);
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(217, 107, 39, 0.1);
  color: var(--brand-primary-dark);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(217, 107, 39, 0.2);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.spec-check {
  color: var(--brand-primary);
  font-weight: 800;
}

/* Visual Card Showcase */
.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.visual-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: #e2e8f0;
  border: 3px solid #ffffff;
}

.visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visual-card:hover .visual-img {
  transform: scale(1.03);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 60%, rgba(15, 23, 42, 0.45) 100%);
}

.visual-floating-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.badge-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.badge-sub {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.visual-specs-chip {
  position: absolute;
  top: 20px;
  right: -10px;
  background: var(--bg-dark);
  color: #ffffff;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-accent-amber);
}

/* ==========================================================================
   Section Standard Layout
   ========================================================================== */
.section {
  padding: 5rem 0;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Digital Visiting Card Section
   ========================================================================== */
.card-section {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.visiting-card-container {
  max-width: 640px;
  margin: 0 auto;
}

.visiting-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.visiting-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -8px rgba(15, 23, 42, 0.16);
}

.card-accent-strip {
  height: 6px;
  background: var(--brand-gradient);
}

.card-top {
  padding: 2rem 2rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.card-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.card-industry {
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-primary);
}

.card-seal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(217, 107, 39, 0.4);
}

.seal-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.card-divider {
  height: 1px;
  background-color: var(--border-subtle);
  margin: 0 2rem;
}

.card-body {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-circle svg {
  width: 20px;
  height: 20px;
}

.card-info-text {
  flex-grow: 1;
}

.info-label {
  display: block;
  font-size: 0.775rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

.info-value {
  font-size: 0.975rem;
  color: var(--text-primary);
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
}

.primary-phone {
  color: var(--brand-primary-dark);
  font-size: 1.15rem;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.primary-phone:hover {
  color: var(--brand-primary);
}

.btn-copy {
  background: transparent;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  position: relative;
  transition: all var(--transition-fast);
}

.btn-copy:hover {
  background: var(--bg-alt);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-copy.copied {
  background: #dcfce7;
  color: #166534;
  border-color: #86efac;
}

.copy-icon {
  width: 16px;
  height: 16px;
}

.copy-tooltip {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  pointer-events: none;
  z-index: 20;
  box-shadow: var(--shadow-md);
}

.copy-tooltip.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-2px);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border-subtle);
  background-color: var(--bg-main);
}

.card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  border-right: 1px solid var(--border-subtle);
}

.card-btn:last-child {
  border-right: none;
}

.card-btn-call {
  color: var(--brand-primary-dark);
}

.card-btn-call:hover {
  background-color: var(--brand-primary-light);
}

.card-btn-wa {
  color: var(--color-wa-dark);
}

.card-btn-wa:hover {
  background-color: #dcfce7;
}

.card-btn-map {
  color: var(--text-primary);
}

.card-btn-map:hover {
  background-color: var(--bg-alt);
}

/* ==========================================================================
   Services & Lathe Work Grid
   ========================================================================== */
.services-section {
  background-color: var(--bg-main);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 107, 39, 0.4);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

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

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-list {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.service-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.service-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-section {
  background-color: var(--bg-dark);
  color: #ffffff;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal), background var(--transition-normal);
}

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

.why-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-accent-amber);
  margin-bottom: 0.75rem;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.55;
}

/* ==========================================================================
   Contact & Location Panel
   ========================================================================== */
.contact-section {
  background-color: var(--bg-main);
}

.contact-card-wrapper {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .contact-card-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-panel {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.contact-panel-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.contact-panel-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon-box svg {
  width: 20px;
  height: 20px;
}

.detail-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.detail-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary-dark);
  display: block;
}

.detail-link:hover {
  color: var(--brand-primary);
}

.detail-sub {
  display: block;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.detail-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
  font-weight: 500;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

/* Map Panel */
.contact-map-panel {
  position: relative;
  min-height: 380px;
  background: #e2e8f0;
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.map-overlay-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.map-overlay-badge strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-primary);
}

.map-overlay-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.map-badge-link {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-top: 0.25rem;
}

.map-badge-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
}

.footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-bio {
  font-size: 0.925rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer-col-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-nav-list li {
  margin-bottom: 0.5rem;
}

.footer-nav-list a {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-nav-list a:hover {
  color: var(--brand-accent-amber);
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-phone {
  font-size: 0.9rem;
}

.footer-phone a {
  color: #ffffff;
  font-weight: 600;
}

.footer-phone a:hover {
  color: var(--brand-accent-amber);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.85rem;
}

.copyright-text {
  color: #64748b;
}

.managed-by a {
  color: #cbd5e1;
  font-weight: 500;
}

.managed-by a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ==========================================================================
   Mobile Sticky Quick Action Bar
   ========================================================================== */
.mobile-action-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  border-top: 1px solid var(--border-subtle);
}

@media (min-width: 768px) {
  .mobile-action-bar {
    display: none;
  }
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

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

.mobile-call {
  background: var(--brand-gradient);
}

.mobile-whatsapp {
  background-color: var(--color-wa);
}
