/* Contact page-specific styles. */

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  height: 42px;
  padding: 0 1.2rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t),
    background var(--t),
    color var(--t);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  line-height: 1;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-bright);
  box-shadow: 0 8px 24px var(--blue-glow);
}
.btn-primary .arrow {
  background: rgba(255, 255, 255, 0.18);
}
.btn-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(59, 130, 246, 0.08);
  color: var(--white);
}
.btn-outline .arrow {
  background: rgba(59, 130, 246, 0.18);
  color: var(--blue);
}
.btn-outline.on-light {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline.on-light:hover {
  color: var(--blue-deep);
  background: rgba(59, 130, 246, 0.06);
}

/* ========== Footer ========== */
.site-footer {
  background: #080b10;
  padding: 3.5rem 0 1.2rem;
  color: var(--off);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.05fr 1.15fr;
  gap: 2.2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.86rem;
  max-width: 28ch;
  margin: 1rem 0 1.2rem;
}
.social-row {
  display: flex;
  gap: 0.6rem;
}
.social-row {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: auto;
  height: auto;

  border: none;
  background: transparent;
  padding: 0;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    filter 0.25s ease;
}

.social-row a:hover {
  transform: translateY(-2px) scale(1.08);
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.35));
}

.social-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.social-row svg {
  width: 32px;
  height: 32px;
}
.site-footer h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  color: var(--white);
}
.site-footer .footer-col a,
.site-footer .footer-col p {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
  transition: color var(--t);
}
.site-footer .footer-col a:hover {
  color: var(--blue);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
}
.footer-bottom p {
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-bottom .links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom .links a {
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-bottom .links a:hover {
  color: var(--blue);
}

/* ========== Placeholder stripe pattern ========== */
.ph-stripes {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025) 0 12px,
      rgba(255, 255, 255, 0.055) 12px 24px
    ),
    linear-gradient(160deg, #1f2632 0%, #131820 100%);
  display: grid;
  place-items: center;
}
.image-card > .ph-stripes,
.project-image > .ph-stripes {
  position: absolute;
  inset: 0;
}
.ph-label {
  font-family:
    "JetBrains Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
}

/* ========== Tag pills ========== */
.tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: var(--blue);
  background: rgba(59, 130, 246, 0.06);
  margin-bottom: 0.7rem;
}

/* ========== Form ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.quote-form {
  display: grid;
  gap: 1rem;
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 2rem;
}
.quote-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.quote-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--off);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--line);
  padding: 0.85rem 0.95rem;
  font-family: inherit;
  font-size: 0.94rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  outline: none;
  transition: var(--t);
}
.quote-form textarea {
  min-height: 130px;
  resize: vertical;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
}
.quote-form .btn {
  justify-self: start;
}

.info-block {
  display: grid;
  gap: 1.6rem;
}
.info-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 1.6rem 1.8rem;
}
.info-card h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
}
.info-card p,
.info-card a {
  color: var(--off);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.25rem;
  display: block;
}
.info-card a:hover {
  color: var(--blue);
}
.info-card .ico-text {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--off);
}
.info-card .ico-text svg {
  color: var(--blue);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* =========================================
   SERVICE AREA MAP
========================================= */

.service-area-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(59, 130, 246, 0.08),
      transparent 40%
    ),
    linear-gradient(180deg, #0d1117 0%, #121722 100%);
}

.service-area-title {
  max-width: 860px;
  margin-bottom: 36px;
}
.service-area-title .eyebrow {
  margin-bottom: 18px;
}

.service-area-title h2 {
  margin-bottom: 22px;
}

.title-rule {
  margin-bottom: 26px;
}
.service-area-title h2 {
  font-size: clamp(52px, 5vw, 78px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #f3f4f6;
}

.service-area-title p:not(.eyebrow) {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.service-map-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;

  border-radius: 28px;

  border: 1px solid rgba(59, 130, 246, 0.18);

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  padding: 12px;
}

.service-map-wrapper iframe {
  display: block;

  width: 100%;
  height: 520px;

  border: 0;
  border-radius: 18px;

  overflow: hidden;
}

.service-area-note {
  margin-top: 42px;

  padding: 32px;

  border-radius: 22px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );

  max-width: 760px;
}

.service-area-note p:first-child {
  font-size: 22px;
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: 10px;
}

.service-area-note p:nth-child(2) {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .service-area-section {
    padding: 90px 0;
  }

  .service-area-title h2 {
    font-size: 54px;
  }

  .service-map-wrapper iframe {
    height: 500px;
  }

  .service-area-note {
    padding: 24px;
  }
}
