/* ============================================================
   DODA — Global Custom Styles
   Tailwind handles utilities; only put here what Tailwind cannot.
   ============================================================ */

/* Smooth scroll (polyfill for older browsers) */
html {
  scroll-behavior: auto; /* JS handles smooth scroll with correct offset */
}

body {
  overflow-x: hidden; /* prevents horizontal scroll without breaking sticky/scroll-padding */
}

/* Allow flex/grid children to shrink below content size — prevents overflow in all sections */
*, *::before, *::after {
  min-width: 0;
}

/* Prevent long text from overflowing its container on any screen size */
h1, h2, h3, h4, h5, h6, p, li, a {
  overflow-wrap: break-word;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar        { width: 6px; }
::-webkit-scrollbar-track  { background: #FFFAFA; }
::-webkit-scrollbar-thumb  { background: #39667b; border-radius: 3px; }

/* ── Header scroll shadow ─────────────────────────────────── */
#header {
  transition: box-shadow 0.3s ease;
}
#header.scrolled {
  box-shadow: 0 2px 16px 0 rgba(51, 51, 51, 0.08);
}

/* ── Nav link underline animation ─────────────────────────── */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #39667b;
  transition: width 0.25s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* ── Hero slider (Section 2) ──────────────────────────────── */

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Slider container — fills remaining viewport after sticky header */
.slider {
  position: relative;
  overflow: hidden;
  height: calc(100dvh - var(--header-height, 72px));
  background: #1a2e38; /* fallback while images load */
}

/* Individual slides — hidden by default, stacked */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

/* Active slide */
.slide.active {
  position: relative;        /* takes up space in flow */
  height: 100%;              /* fills .slider height */
  opacity: 1;
  pointer-events: auto;
}

/* Placeholder backgrounds (remove once real images are in place) */
.slide--1 { background: linear-gradient(135deg, #1a2e38 0%, #39667b 100%); }
.slide--2 { background: linear-gradient(135deg, #2c3e50 0%, #39667b 100%); }
.slide--3 { background: linear-gradient(135deg, #1c3a4a 0%, #4a7d8f 100%); }

/* Per-slide image focus overrides */
.slide--1 .slide-image { object-position: center 40%; transform: scale(1.25); }
.slide--2 .slide-image { object-position: center 35%; transform: scale(1.25); }

/* Slide image: fills entire slide */
.slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Branded overlay: nearly opaque on text side, fades to transparent */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 46, 56, 0.93) 0%,
    rgba(26, 46, 56, 0.80) 40%,
    rgba(26, 46, 56, 0.30) 65%,
    rgba(26, 46, 56, 0.00) 100%
  );
}

/* Content: vertically centered, left-aligned */
.slide-content {
  position: relative;        /* above overlay */
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: inherit;
  max-width: none;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.slide-content > * {
  max-width: 640px;
}

/* Eyebrow label */
.slide-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8cdd8;
  margin-bottom: 0.75rem;
}

/* Main headline */
.slide-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
}

@media (min-width: 768px)  { .slide-heading { font-size: 2.75rem; } }
@media (min-width: 1024px) { .slide-heading { font-size: 3.5rem;  } }

/* Subtext */
.slide-subtext {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 480px;
}

@media (min-width: 768px) { .slide-subtext { font-size: 1.125rem; } }

/* Slide list (ul inside slide-content) */
.slide-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.slide-content ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
}

.slide-content ul li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #39667b;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 768px) {
  .slide-content ul li { font-size: 1.075rem; }
}

/* CTA button */
.slide-cta {
  display: inline-block;
  background-color: #39667b;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-start;
}

.slide-cta:hover {
  background-color: #2d5265;
  box-shadow: 0 4px 16px rgba(57, 102, 123, 0.4);
}

/* ── Prev / Next arrow buttons ─────────────────────────────── */
.slider-prev,
.slider-next {
  display: none; /* hidden on mobile — swipe instead */
}

@media (min-width: 768px) {
  .slider-prev,
  .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .slider-prev:hover,
  .slider-next:hover {
    background: rgba(57, 102, 123, 0.75);
  }

  .slider-prev { left: 1.75rem; }
  .slider-next { right: 1.75rem; }

  .slider-prev svg,
  .slider-next svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* Push slide text past the arrow buttons (arrow right edge ≈ 4.5rem from slider edge) */
  .slide-content {
    padding-left: 5.5rem;
    padding-right: 5.5rem;
  }
}

/* ── Dot indicators ────────────────────────────────────────── */
.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
  padding: 0;
}

.dot--active {
  background: #ffffff;
  width: 1.5rem;       /* pill shape on active */
}

/* ── About Us (Section 3) ─────────────────────────────────── */

/* Eyebrow label */
.about-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #39667b;
  margin-bottom: 0.75rem;
}

/* Stat card */
.about-stat {
  text-align: center;
  padding: 1rem 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.about-stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #39667b;
  line-height: 1;
}

.about-stat-plus {
  font-size: 1.25rem;
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
}

.about-stat-suffix {
  font-size: 0.8rem;
  font-weight: 600;
  color: #39667b;
  margin-top: 0.1rem;
}

.about-stat-label {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

/* Clip section so decorative accent doesn't bleed past viewport */
#about {
  overflow-x: hidden;
}

/* Image wrapper: relative so accent block can be positioned */
.about-image-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: visible;
}

/* The photo */
.about-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 1.25rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  /* Placeholder background until real image is added */
  background: linear-gradient(135deg, #39667b 0%, #1a2e38 100%);
  display: block;
}

/* Branded color overlay on about photo */
.about-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 1.25rem;
  background: linear-gradient(
    to right,
    rgba(57, 102, 123, 0.75) 0%,
    rgba(26, 46, 56, 0.40) 50%,
    rgba(26, 46, 56, 0.00) 100%
  );
  pointer-events: none;
}

/* Decorative offset block behind the image */
.about-image-accent {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  width: 70%;
  height: 70%;
  background-color: #39667b;
  opacity: 0.1;
  border-radius: 1.25rem;
  z-index: 0;
}

/* ── Services (Section 4) ─────────────────────────────────── */

.services-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #39667b;
  margin-bottom: 0.75rem;
}

/* Service card */
.service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(57, 102, 123, 0.12);
  border-color: #39667b;
}

/* Featured card (Express Service) */
.service-card--featured {
  border-color: #39667b;
  background: linear-gradient(160deg, #f0f7fa 0%, #ffffff 100%);
}

/* Icon wrapper */
.service-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef4f7;
  border-radius: 0.75rem;
  color: #39667b;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.service-card:hover .service-icon {
  background: #39667b;
  color: #ffffff;
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333;
}

.service-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.65;
  flex: 1;
}

/* "Most Popular" badge */
.service-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #39667b;
  color: #ffffff;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  margin-top: 0.25rem;
}

/* ── Experience & Products (Section 5) ───────────────────── */

.experience-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #39667b;
  margin-bottom: 0.75rem;
}

/* ── Timeline ─────────────────────────────────────────────── */
.timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: #e5e7eb;
}

@media (min-width: 640px) {
  .timeline::before { left: 50%; transform: translateX(-50%); }
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding-left: 3rem;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

@media (min-width: 640px) {
  .timeline-item {
    padding-left: 0;
    width: 50%;
    padding-right: 3rem;
  }
  /* Alternate: odd items left, even items right */
  .timeline-item:nth-child(even) {
    align-self: flex-end;
    margin-left: 50%;
    padding-right: 0;
    padding-left: 3rem;
  }
}

/* Dot on the line */
.timeline-dot {
  position: absolute;
  left: 0.4rem;
  top: 0.4rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid #39667b;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-dot--current {
  background: #39667b;
  box-shadow: 0 0 0 4px rgba(57, 102, 123, 0.2);
}

@media (min-width: 640px) {
  .timeline-dot {
    left: auto;
    right: -0.6rem;
  }
  .timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -0.6rem;
  }
}

.timeline-content {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.875rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  flex: 1;
}

.timeline-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #39667b;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.timeline-year--current {
  background: #39667b;
  color: #ffffff;
  padding: 0.1rem 0.5rem;
  border-radius: 9999px;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.35rem;
}

.timeline-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
}

/* ── Product badges ───────────────────────────────────────── */
.product-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.product-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(57, 102, 123, 0.1);
  border-color: #39667b;
}

.product-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef4f7;
  border-radius: 0.75rem;
  color: #39667b;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-badge:hover .product-icon {
  background: #39667b;
  color: #ffffff;
}

.product-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.product-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.3;
}

/* ── Pricing (Section 6) ──────────────────────────────────── */

.pricing-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #39667b;
  margin-bottom: 0.75rem;
}

/* Pricing card container */
.pricing-card {
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}

/* Card header band */
.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: #f0f7fa;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.1rem 1.5rem;
}

.pricing-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #39667b;
  border-radius: 0.625rem;
  color: #ffffff;
  flex-shrink: 0;
}

.pricing-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.pricing-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #333333;
}

/* Row list */
.pricing-list {
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s ease;
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row:hover { background: #f9fafb; }

/* Highlighted row (Express surcharge) */
.pricing-row--highlight {
  background: #fef9f0;
}
.pricing-row--highlight:hover { background: #fef3e0; }
.pricing-row--highlight .pricing-price { color: #d97706; }

.pricing-item {
  font-size: 0.9rem;
  color: #374151;
}

.pricing-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #39667b;
  white-space: nowrap;
  margin-left: 1rem;
}

/* Info note below the tables */
.pricing-note {
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
  background: #f0f7fa;
  border: 1px solid #d0e6ef;
  border-radius: 0.75rem;
  padding: 0.875rem 1.25rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* PDF download button */
.pricing-download {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #39667b;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 0.875rem;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(57, 102, 123, 0.25);
}

.pricing-download:hover {
  background: #2d5265;
  box-shadow: 0 6px 20px rgba(57, 102, 123, 0.35);
}

/* ── Contact (Section 7) ──────────────────────────────────── */

.contact-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #39667b;
  margin-bottom: 0.75rem;
}

/* Map wrapper */
.contact-map-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.contact-map {
  width: 100%;
  height: 480px;
  background: #e5e7eb; /* fallback while map loads */
}

@media (min-width: 1024px) {
  .contact-map { height: 560px; }
}

/* Info cards */
.contact-info-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-card:hover {
  border-color: #39667b;
  box-shadow: 0 4px 16px rgba(57, 102, 123, 0.08);
}

.contact-info-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef4f7;
  border-radius: 0.625rem;
  color: #39667b;
  margin-bottom: 0.25rem;
}

.contact-info-icon svg { width: 1.1rem; height: 1.1rem; }

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.contact-info-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.55;
}

.contact-info-link {
  text-decoration: none;
  color: #39667b;
  transition: color 0.2s ease;
}

.contact-info-link:hover { color: #2d5265; text-decoration: underline; }

/* Contact form */
.contact-form {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.825rem;
  font-weight: 600;
  color: #374151;
}

.form-input {
  width: 100%;
  padding: 0.65rem 0.875rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: #333333;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.625rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: #39667b;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(57, 102, 123, 0.12);
}

.form-input.input-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  font-size: 0.775rem;
  color: #ef4444;
  min-height: 1rem;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #39667b;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(57, 102, 123, 0.25);
}

.form-submit:hover {
  background: #2d5265;
  box-shadow: 0 6px 20px rgba(57, 102, 123, 0.3);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.625rem;
  padding: 0.65rem 1rem;
}

/* ── Footer (Section 8) ───────────────────────────────────── */

.footer-logo {
  width: 110px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.footer-link {
  font-size: 0.875rem;
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover { color: #ffffff; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #d1d5db;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #39667b;
}

/* Social icon buttons */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #d1d5db;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.footer-social:hover {
  background: #39667b;
  color: #ffffff;
  border-color: #39667b;
}

.footer-social svg { width: 1rem; height: 1rem; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
