/* Layout shell */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f3f4f6;
  color: #111827;
}

.app-shell {
  max-width: 1100px;
  margin: 32px auto;
  padding: 24px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e5e7eb;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.header-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-header h1 {
  margin: 0;
  font-size: 1.5rem;
  color: #1f2937;
  font-weight: 700;
}

.header-tagline {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

.header-tagline strong {
  color: #c8102e;
}

/* Step nav */
.step-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.step-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  cursor: default;
  position: relative;
}

.step-pill .pill-number,
.step-pill .pill-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  background: #e5e7eb;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  transition: all 0.25s ease;
}

.step-pill .pill-check {
  display: none;
  background: #10b981;
  border-color: #10b981;
  color: white;
  font-size: 1rem;
}

.step-pill .pill-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
}

/* Active step */
.step-pill.active .pill-number {
  background: #c8102e;
  border-color: #c8102e;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.15);
}

.step-pill.active .pill-label {
  color: #c8102e;
  font-weight: 600;
}

/* Completed step */
.step-pill.completed .pill-number {
  display: none;
}

.step-pill.completed .pill-check {
  display: flex;
}

.step-pill.completed .pill-label {
  color: #10b981;
}

/* Connector lines */
.step-connector {
  flex: 1;
  height: 3px;
  background: #e5e7eb;
  max-width: 80px;
  min-width: 30px;
  border-radius: 2px;
  transition: background 0.25s ease;
}

.step-connector.completed {
  background: #10b981;
}

/* Panels */
.step-panel {
  display: none;
  margin-top: 8px;
}

.step-panel.active {
  display: block;
}

.step-panel h2 {
  margin: 0 0 8px;
}

.step-panel p {
  margin-top: 0;
}

/* ========== Why Skybolt Section ========== */
.why-skybolt {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-left: 4px solid #c8102e;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.why-skybolt-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.why-skybolt-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #1f2937;
}

.since-badge {
  background: #c8102e;
  color: white;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.why-skybolt-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.why-stat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.stat-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-text strong {
  font-size: 0.9rem;
  color: #1f2937;
}

.stat-text span {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.4;
}

.why-skybolt-trust {
  background: rgba(200, 16, 46, 0.06);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
}

.trust-label {
  color: #6b7280;
  font-weight: 600;
  margin-right: 8px;
}

.trust-list {
  color: #374151;
}

/* ========== Selection sections for Step 1 ========== */
.selection-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.selection-section:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.section-title {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
}

.section-subtitle {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: #6b7280;
}

/* Choice cards */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 0;
}

.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #f9fafb;
  cursor: pointer;
  transition: box-shadow 0.18s ease, transform 0.18s ease,
    border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  color: #1f2933;
}

.choice-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.choice-card p {
  margin: 0;
  font-size: 0.88rem;
  color: #4b5563;
}

.choice-card .pill {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e5e7eb;
  font-size: 0.75rem;
  color: #4b5563;
}

/* Card icons */
.card-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

/* Hover: lift + shadow */
.choice-card:hover {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
  transform: translateY(-1px);
}

/* Selected: solid Skybolt red */
.choice-card.selected {
  background: #c8102e;
  border-color: #c8102e;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.4);
}

.choice-card.selected h3,
.choice-card.selected p {
  color: #ffffff;
}

.choice-card.selected .card-icon {
  opacity: 1;
}

.choice-card.selected .family-specs {
  color: rgba(255, 255, 255, 0.9);
}

/* Hover on selected */
.choice-card.selected:hover {
  background: #c8102e;
  border-color: #c8102e;
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(200, 16, 46, 0.55);
  transform: translateY(-1px);
}

/* Disabled */
.choice-card.disabled {
  cursor: default;
  opacity: 0.5;
  box-shadow: none;
}

.choice-card.disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Family card specs */
.family-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.75rem;
  color: #6b7280;
}

.family-specs span {
  background: rgba(0, 0, 0, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
}

.choice-card.selected .family-specs span {
  background: rgba(255, 255, 255, 0.2);
}

/* ========== CLoc Introduction Section ========== */
.cloc-intro {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
  color: #ffffff;
  padding: 24px 28px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.cloc-header {
  margin-bottom: 16px;
}

.cloc-badge-large {
  display: inline-block;
  background: #c8102e;
  color: white;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.cloc-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.cloc-intro > p {
  color: #d1d5db;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cloc-decision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.decision-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 16px;
}

.decision-icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.decision-card h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #ffffff;
}

.decision-card p {
  margin: 0 0 6px;
  font-size: 0.82rem;
  color: #d1d5db;
  line-height: 1.5;
}

.decision-card strong {
  color: #ffffff;
}

.cloc-customers {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
}

.customer-label {
  color: #9ca3af;
  margin-right: 8px;
}

.customer-list {
  color: #e5e7eb;
}

/* ========== Family Intro Banners (Step 3) ========== */
.family-intro-banner {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px solid #c8102e;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.family-intro-banner.hidden {
  display: none;
}

.banner-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.banner-header h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #1f2937;
}

.banner-badge {
  background: #c8102e;
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.banner-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.banner-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-label {
  font-size: 0.72rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-value {
  font-size: 0.88rem;
  color: #1f2937;
  font-weight: 500;
}

.banner-head-styles,
.banner-grommet-types,
.banner-series {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.head-style-label,
.grommet-label,
.series-label {
  font-size: 0.78rem;
  color: #6b7280;
  font-weight: 600;
}

.head-style-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.head-icon {
  background: #e5e7eb;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  color: #374151;
}

.grommet-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.grommet-item {
  background: #e5e7eb;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  color: #374151;
}

.series-item {
  background: #dbeafe;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  color: #1e40af;
  font-weight: 500;
}

.banner-note {
  background: #fef3c7;
  border-left: 3px solid #f59e0b;
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  font-size: 0.82rem;
  color: #92400e;
}

/* ========== Racing Sections ========== */
.racing-intro {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  padding: 24px 28px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.racing-header {
  margin-bottom: 16px;
}

.racing-badge-large {
  display: inline-block;
  background: #c8102e;
  color: white;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.racing-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.racing-intro > p {
  color: #d1d5db;
  margin-bottom: 16px;
  line-height: 1.6;
}

.racing-intro strong {
  color: #ffffff;
}

.racing-product-highlight {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
  border-left: 3px solid #c8102e;
}

.racing-product-highlight h4 {
  margin: 0 0 10px;
  color: #333;
  font-size: 1rem;
}

.racing-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.racing-specs li {
  padding: 4px 0;
  color: #555;
  font-size: 0.9rem;
}

.racing-specs li strong {
  color: #333;
}

.racing-components {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.component-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.component-card strong {
  color: #c8102e;
  font-size: 0.95rem;
}

.component-card span {
  color: #374151;
  font-size: 0.82rem;
}

.component-card .component-detail {
  color: #6b7280;
  font-size: 0.75rem;
}

/* Racing Type Selection Cards */
.racing-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.racing-type-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.racing-type-card:hover:not(.coming-soon-type) {
  border-color: #c8102e;
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.15);
  transform: translateY(-2px);
}

.racing-type-card.active-type {
  border-color: #c8102e;
  background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2);
}

.racing-type-card h4 {
  margin: 0 0 8px 0;
  color: #1f2937;
  font-size: 1.1rem;
}

.racing-type-badge {
  display: inline-block;
  background: #c8102e;
  color: white;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.racing-type-badge.coming-soon-badge {
  background: #6b7280;
}

.racing-type-card p {
  font-size: 0.88rem;
  color: #4b5563;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.racing-type-features {
  margin: 0;
  padding-left: 18px;
  font-size: 0.82rem;
  color: #6b7280;
}

.racing-type-features li {
  margin-bottom: 4px;
}

/* Coming Soon State */
.coming-soon-type {
  opacity: 0.55;
  cursor: not-allowed;
}

.coming-soon-type:hover {
  transform: none;
  box-shadow: none;
  border-color: #e2e8f0;
}

.coming-soon-banner {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #6b7280;
  color: white;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== Config Forms ========== */
.family-config {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.family-config.hidden {
  display: none;
}

.subline {
  margin: 0 0 10px;
  color: #6b7280;
}

.config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #4b5563;
}

.field input[type="text"],
.field select,
textarea {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.field input[type="text"]:focus,
.field select:focus,
textarea:focus {
  border-color: #c8102e;
  box-shadow: 0 0 0 1px rgba(200, 16, 46, 0.35);
}

/* Input validation states */
.field input[type="text"].input-error {
  border-color: #dc2626;
  background-color: #fef2f2;
}

.field input[type="text"].input-valid {
  border-color: #16a34a;
  background-color: #f0fdf4;
}

textarea {
  resize: vertical;
}

.global-options {
  margin-top: 8px;
  margin-bottom: 8px;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.checkbox-row input {
  width: 16px;
  height: 16px;
}

.hint {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: #6b7280;
}

/* Toggle pills for depth */
.pill-toggle {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  overflow: hidden;
}

.toggle-pill {
  border: none;
  background: transparent;
  padding: 6px 12px;
  font-size: 0.85rem;
  cursor: pointer;
  flex: 1;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.toggle-pill.active {
  background: #c8102e;
  color: #ffffff;
}

/* Panel stack group */
.field-group.panel-stack-group {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px dashed #e5e7eb;
}

.field-group.hidden {
  display: none;
}

/* Status line + buttons */
.status-line {
  margin-top: 10px;
  font-size: 0.82rem;
  color: #4b5563;
  min-height: 1.1em;
}

.status-line.error {
  color: #dc2626;
  font-weight: 500;
}

.step-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}

.primary-btn,
.secondary-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease,
    border-color 0.16s ease, box-shadow 0.16s ease,
    transform 0.12s ease;
}

.primary-btn {
  background: #c8102e;
  color: #ffffff;
  border-color: #c8102e;
}

.primary-btn:hover:not(:disabled) {
  box-shadow: 0 8px 22px rgba(200, 16, 46, 0.4);
  transform: translateY(-1px);
}

.primary-btn:disabled {
  background: #9ca3af;
  border-color: #9ca3af;
  cursor: not-allowed;
}

.secondary-btn {
  background: #f9fafb;
  color: #374151;
  border-color: #d1d5db;
}

.secondary-btn:hover:not(:disabled) {
  background: #f3f4f6;
}

/* Loading state on primary button */
.primary-btn.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.9;
}

.primary-btn.loading::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: rgba(255, 255, 255, 1);
  transform: translateY(-50%);
  animation: skybolt-spin 0.7s linear infinite;
}

@keyframes skybolt-spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* ========== Summary Cards ========== */
.summary-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .summary-layout {
    grid-template-columns: 1fr;
  }
}

.summary-card {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 0.9rem;
}

.summary-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.summary-card .part-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 0.85rem;
  padding: 4px 0;
}

.summary-card .label {
  color: #6b7280;
}

.summary-card .value {
  font-weight: 600;
}

.summary-card .reasoning {
  margin-top: 8px;
  font-size: 0.86rem;
  color: #374151;
}

.summary-card ul {
  padding-left: 18px;
  margin: 4px 0;
}

.summary-card li {
  margin-bottom: 3px;
}

/* Racing-specific summary styling */
.summary-card.racing-summary {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-color: #c8102e;
  border-width: 2px;
}

.summary-card .racing-badge {
  display: inline-block;
  background: #c8102e;
  color: white;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ========== Summary Action Buttons ========== */
.summary-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.18s ease;
}

.action-btn:hover {
  background: #f9fafb;
  border-color: #c8102e;
  color: #c8102e;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.15);
}

.action-icon {
  font-size: 1.1rem;
}

.quote-btn {
  background: #c8102e;
  border-color: #c8102e;
  color: white;
}

.quote-btn:hover {
  background: #a50d26;
  border-color: #a50d26;
  color: white;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

/* ========== Summary Contact Section ========== */
.summary-contact {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 24px;
  color: white;
}

.contact-header {
  margin-bottom: 20px;
}

.contact-header h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: white;
}

.contact-header p {
  margin: 0;
  font-size: 0.88rem;
  color: #d1d5db;
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 16px;
}

.contact-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-details strong {
  font-size: 0.85rem;
  color: #ffffff;
}

.contact-details a {
  color: #93c5fd;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-details a:hover {
  color: #bfdbfe;
  text-decoration: underline;
}

.contact-note {
  font-size: 0.75rem;
  color: #9ca3af;
}