﻿/* ==========================================================================
   SECTION 8 — GLOBAL REACH & WORLDWIDE SHIPPING
   ========================================================================== */

/* ── Header ── */
.gr-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 72px;
}
.gr-header .section-heading {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  margin-bottom: 20px;
}
.gr-header .section-desc {
  max-width: 100%;
  color: var(--text-dark-secondary);
}

/* ── Map Panel (real Google Maps embed) ── */
.gr-map-panel {
  position: relative;
  background: #0d0d0d;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 88px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.gr-map-embed {
  width: 100%;
  height: 460px;
  display: block;
  border: 0;
}

/* ── Confidence Cards ── */
.gr-cards-header {
  text-align: center;
  margin-bottom: 44px;
}
.gr-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.gr-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: 0.02em;
  color: var(--text-dark);
  line-height: 1.1;
}

.gr-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 88px;
}

.gr-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.gr-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #A63D2E, rgba(166,61,46,0.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gr-card:hover {
  border-color: rgba(166,61,46,0.2);
  box-shadow: 0 16px 48px rgba(166,61,46,0.08);
  transform: translateY(-4px);
}
.gr-card:hover::before { transform: scaleX(1); }

.gr-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(166,61,46, 0.06);
  border: 1px solid rgba(166,61,46, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.gr-card:hover .gr-card-icon {
  background: rgba(166,61,46, 0.1);
  border-color: rgba(166,61,46, 0.3);
}
.gr-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #A63D2E;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.gr-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 60px;
  line-height: 1;
  color: rgba(0,0,0,0.03);
  position: absolute;
  top: 16px;
  right: 20px;
  user-select: none;
  pointer-events: none;
  letter-spacing: 0.01em;
}
.gr-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.1;
}
.gr-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-dark-secondary);
}

/* ── Shipping Journey ── */
.gr-journey-header {
  text-align: center;
  margin-bottom: 56px;
}

.gr-journey {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.gr-journey-track {
  position: absolute;
  left: 50%;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: rgba(0,0,0,0.07);
  transform: translateX(-50%);
}
.gr-journey-track-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, #A63D2E, rgba(166,61,46,0.3));
  border-radius: 2px;
  transition: height 0.1s linear;
}

.gr-step {
  display: flex;
  gap: 18px;
  flex-direction: row-reverse;
  width: 50%;
  align-self: flex-start;
  padding: 0 40px 44px 0;
  opacity: 0;
  transform: translateX(-20px);
}
.gr-step:nth-child(odd) {
  align-self: flex-end;
  flex-direction: row;
  padding: 0 0 44px 40px;
  transform: translateX(20px);
}
.gr-step:last-child { padding-bottom: 0; }

.gr-step-icon-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.gr-step:nth-child(odd) .gr-step-icon-wrap { align-items: flex-start; }

.gr-step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.gr-step-circle svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-dark-secondary);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke 0.3s ease;
}
.gr-step.is-active .gr-step-circle {
  background: #A63D2E;
  border-color: #A63D2E;
  box-shadow: 0 8px 28px rgba(166,61,46,0.3);
}
.gr-step.is-active .gr-step-circle svg { stroke: #fff; }

.gr-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.25);
  margin-top: 8px;
  text-align: center;
}

.gr-step-content { flex: 1; padding-top: 14px; text-align: right; }
.gr-step:nth-child(odd) .gr-step-content { text-align: left; }

.gr-step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.1;
}
.gr-step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dark-secondary);
}

/* SEO content block (subtle) */
.gr-seo-strip {
  margin-top: 80px;
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
}
.gr-seo-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.2);
  transition: color 0.25s ease;
}
.gr-seo-tag:hover { color: var(--primary); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .gr-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .gr-journey { max-width: 520px; }
  .gr-journey-track { display: none; }
  .gr-step,
  .gr-step:nth-child(odd) {
    width: 100%;
    align-self: stretch;
    flex-direction: row;
    padding: 0 0 36px 0;
    transform: translateX(0);
    transform: translateY(20px);
  }
  .gr-step-content,
  .gr-step:nth-child(odd) .gr-step-content { text-align: left; }
  .gr-step-icon-wrap,
  .gr-step:nth-child(odd) .gr-step-icon-wrap { align-items: center; }
}

@media (max-width: 767px) {
  .gr-header { margin-bottom: 48px; }
  .gr-map-panel { margin-bottom: 60px; border-radius: 16px; }
  .gr-map-embed { height: 320px; }
  .gr-cards { grid-template-columns: 1fr; margin-bottom: 60px; }
  .gr-cards-header { margin-bottom: 32px; }
  .gr-seo-strip { margin-top: 52px; }
}

@media (max-width: 480px) {
  .gr-card { padding: 24px 20px; }
}
