/* ====================================================
   Gwynn Logistics — Contact Page
   Matches: gwynn_contact_page_SOCIAL_TEXT_UPDATE.html
   ==================================================== */

/* ---- Hero (2-col: text + photo) ---- */
.contact-hero {
  min-height: 520px;
  background:
    radial-gradient(circle at top right, rgba(12,117,185,.28), transparent 36%),
    radial-gradient(circle at bottom left, rgba(215,25,32,.10), transparent 26%),
    linear-gradient(115deg, #071a2d 0%, #0d2d4d 58%, #123b62 100%);
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 42px;
  padding: 82px var(--section-px) 78px;
  align-items: center;
  overflow: hidden;
}

.contact-hero h1 {
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: -2px;
  margin: 0 0 22px;
  max-width: 880px;
}

.contact-hero .hero-intro {
  font-size: 21px;
  line-height: 1.52;
  color: #dceaf7;
  margin: 0;
  max-width: 800px;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-pill {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #d9e8f7;
  font-size: 13px;
  font-weight: 800;
}

.contact-hero-photo {
  min-height: 430px;
  border-radius: 28px;
  background-size: cover !important;
  background-position: center center !important;
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}

/* ---- Action Selector (3 choice cards) ---- */
.contact-action-selector {
  padding: 68px var(--section-px) 72px;
  background:
    radial-gradient(circle at top right, rgba(12,117,185,.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.action-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.action-choice-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(8,27,47,.07);
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.action-choice-top {
  height: 8px;
  background: var(--color-red);
}

.action-choice-card.review .action-choice-top  { background: #0c75b9; }
.action-choice-card.message .action-choice-top { background: #07192b; }

.action-choice-body {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.action-choice-label {
  color: var(--color-text-light);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 15px;
}

.action-choice-card h3 {
  margin: 0 0 12px;
  color: var(--color-text);
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -.4px;
}

.action-choice-card > .action-choice-body > p {
  margin: 0;
  color: var(--color-text-mid);
  line-height: 1.58;
  font-size: 15.5px;
}

.action-choice-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 9px;
}

.action-choice-list li {
  color: #40566d;
  line-height: 1.42;
  font-size: 14.5px;
  padding-left: 23px;
  position: relative;
}

.action-choice-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-red);
  font-weight: 900;
}

.action-choice-card.review  .action-choice-list li::before { color: #0c75b9; }
.action-choice-card.message .action-choice-list li::before { color: #07192b; }

.action-choice-footer {
  margin-top: auto;
  padding-top: 24px;
}

.action-choice-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 18px;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  color: #ffffff;
  background: var(--color-red);
  transition: opacity .15s;
}

.action-choice-button:hover           { opacity: .88; color: #ffffff; }
.action-choice-card.review  .action-choice-button { background: #0c75b9; }
.action-choice-card.message .action-choice-button { background: #07192b; }

/* ---- Company Contact Section ---- */
.company-contact-section {
  padding: 76px var(--section-px);
  background: #ffffff;
}

.company-contact-shell {
  margin-top: 34px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(8,27,47,.08);
  background: #ffffff;
}

/* Dark header strip */
.company-contact-top {
  background:
    radial-gradient(circle at top right, rgba(12,117,185,.22), transparent 38%),
    linear-gradient(135deg, #07192b 0%, #0d2d4d 100%);
  color: #ffffff;
  padding: 34px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.company-contact-top h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -.8px;
}

.company-contact-top p {
  margin: 0;
  color: #d9e8f7;
  font-size: 16px;
  line-height: 1.55;
  max-width: 900px;
}

.company-contact-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: #ffffff;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
}

/* 2-col body: offices + phone panel */
.company-contact-body {
  padding: 30px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 24px;
  align-items: start;
}

/* Office cards */
.office-panel {
  display: grid;
  gap: 16px;
}

.office-card-full {
  border: 1px solid var(--color-border);
  background: #f7f9fc;
  border-radius: 20px;
  padding: 22px;
}

.office-card-full .office-label {
  color: var(--color-red);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 10px;
}

.office-card-full h3 {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.15;
}

.office-card-full p {
  margin: 0;
  color: var(--color-text-mid);
  font-size: 15px;
  line-height: 1.55;
}

/* Phone panel */
.phone-panel-full {
  border: 1px solid var(--color-border);
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(8,27,47,.05);
}

.phone-panel-header {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px;
  background: #ffffff;
  border-bottom: 1px solid #e8eef5;
}

.phone-panel-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: #fff3f4;
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.phone-panel-label {
  color: var(--color-text-light);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 6px;
}

.phone-panel-number {
  display: inline-flex;
  color: var(--color-text);
  text-decoration: none;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.6px;
  margin-bottom: 7px;
}

.phone-panel-number:hover { color: var(--color-red); }

.phone-panel-header p {
  margin: 0;
  color: var(--color-text-mid);
  font-size: 15px;
  line-height: 1.45;
}

/* Extension grid */
.extension-grid-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.extension-tile {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid #e8eef5;
  border-right: 1px solid #e8eef5;
  align-items: start;
  min-height: 112px;
}

.extension-tile:nth-child(2n)                    { border-right: 0; }
.extension-tile:last-child                       { border-bottom: 0; }
.extension-tile:nth-last-child(2):nth-child(odd) { border-bottom: 0; }

.extension-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff3f4;
  color: var(--color-red);
  border-radius: 999px;
  min-width: 54px;
  height: 34px;
  font-size: 14px;
  font-weight: 900;
}

.extension-tile:nth-child(2) .extension-pill               { background: #eef7fd; color: #0c75b9; }
.extension-tile:nth-child(3) .extension-pill,
.extension-tile:nth-child(4) .extension-pill,
.extension-tile:nth-child(5) .extension-pill               { background: #f1f4f8; color: #07192b; }

.extension-tile h4 {
  margin: 0 0 5px;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.2;
}

.extension-tile p {
  margin: 0;
  color: var(--color-text-mid);
  font-size: 14px;
  line-height: 1.45;
}

/* Footer strip */
.company-contact-footer {
  padding: 0 30px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.company-contact-note {
  margin: 0;
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.5;
  max-width: 720px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: background .15s, border-color .15s;
}

.social-link:hover { background: var(--color-bg-section); }

.social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 18px;
}

.social-link.linkedin svg { color: #0a66c2; }
.social-link.facebook svg { color: #1877f2; }
.social-link.instagram svg { color: #e4405f; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .contact-hero          { grid-template-columns: 1fr; }
  .contact-hero h1       { font-size: 46px; }
  .contact-hero-photo    { min-height: 330px; }
  .company-contact-top   { grid-template-columns: 1fr; }
  .company-contact-body  { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .contact-hero h1       { font-size: 38px; }
  .action-selector-grid  { grid-template-columns: 1fr; }
  .extension-grid-full   { grid-template-columns: 1fr; }
  .extension-tile,
  .extension-tile:nth-child(2n) { border-right: 0; }
  .extension-tile:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid #e8eef5; }
}
