/* ============================================================
   MKM Freight Logistics LLC — Main Stylesheet
   Pure CSS, no external dependencies, system fonts only
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #1a2744;
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ---- Color Variables ---- */
:root {
  --navy:       #1a2744;
  --navy-dark:  #0d1b2e;
  --navy-mid:   #243460;
  --gold:       #c9a84c;
  --gold-light: #e8c96c;
  --gold-dark:  #a8852e;
  --white:      #ffffff;
  --gray-light: #f0f4f9;
  --gray-mid:   #e2e8f3;
  --gray-text:  #64748b;
  --border:     #d1dbe8;
  --shadow-sm:  0 2px 8px rgba(26,39,68,0.10);
  --shadow-md:  0 4px 20px rgba(26,39,68,0.14);
  --shadow-lg:  0 8px 40px rgba(26,39,68,0.18);
}

/* ---- Container ---- */
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

.btn-full {
  width: 100%;
  display: block;
}

/* ============================================================
   BADGE LOGO (CSS-only)
   ============================================================ */
.badge-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  border: 3px solid var(--gold);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  line-height: 1;
  padding: 4px;
}

.badge-top {
  font-size: 0.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.badge-mid {
  font-size: 0.52rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-btm {
  font-size: 0.42rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-logo--sm {
  width: 44px;
  height: 44px;
}
.badge-logo--sm .badge-top  { font-size: 0.42rem; }
.badge-logo--sm .badge-mid  { font-size: 0.45rem; }
.badge-logo--sm .badge-btm  { font-size: 0.38rem; }

.badge-logo--lg {
  width: 96px;
  height: 96px;
  border-width: 4px;
  margin-bottom: 1rem;
}
.badge-logo--lg .badge-top  { font-size: 0.82rem; }
.badge-logo--lg .badge-mid  { font-size: 0.88rem; }
.badge-logo--lg .badge-btm  { font-size: 0.72rem; }

.badge-logo--xl {
  width: 140px;
  height: 140px;
  border-width: 5px;
  margin-bottom: 1rem;
}
.badge-logo--xl .badge-top  { font-size: 1.15rem; }
.badge-logo--xl .badge-mid  { font-size: 1.25rem; }
.badge-logo--xl .badge-btm  { font-size: 1rem;    }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.4rem 0.85rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  margin-left: 0.5rem;
}
.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.4rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 0.5rem 0;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link {
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1220 0%, #1a2744 40%, #243460 70%, #1a2744 100%);
  overflow: hidden;
}

/* Subtle truck/road pattern overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

/* Road / horizon line */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 5rem;
  max-width: 860px;
  margin-inline: auto;
}

.hero-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding: 1rem 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.trust-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ============================================================
   SECTIONS — common
   ============================================================ */
.section {
  padding-block: 5rem;
}

.section--light {
  background: var(--white);
}

.section--muted {
  background: var(--gray-light);
}

.section--dark {
  background: var(--navy);
}

.section--contact {
  background: var(--navy-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header--light .section-title,
.section-header--light .section-subtitle {
  color: var(--white);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.65;
}

/* ============================================================
   PRICING / PACKAGES
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.75rem 1.75rem;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Featured (Growth) card */
.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.25), var(--shadow-lg);
  background: linear-gradient(160deg, #fffdf5 0%, #ffffff 60%);
}

.pricing-card--featured:hover {
  transform: translateY(-6px) scale(1.01);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 1.5rem;
  padding-top: 0.75rem;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.price-dollar {
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: top;
  padding-top: 0.4rem;
  display: inline-block;
}

.price-period {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-text);
}

.pricing-subtitle {
  font-size: 0.88rem;
  color: var(--gray-text);
  font-style: italic;
}

.pricing-features {
  flex: 1;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #2a3a5c;
  line-height: 1.5;
}

.feature-check {
  color: var(--gold-dark);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-cta {
  margin-top: auto;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
  align-items: center;
}

.about-badge-box {
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid rgba(201,168,76,0.3);
}

.about-badge-tagline {
  color: var(--gold);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.about-title {
  text-align: left;
}

.about-desc {
  font-size: 0.98rem;
  color: #3a4a6e;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.highlight-tag {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--gold);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  gap: 1rem;
  transition: background 0.15s;
  font-family: inherit;
}

.faq-question:hover {
  background: var(--gray-light);
}

.faq-chevron {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: #3a4a6e;
  line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  color: var(--white);
}

.contact-info-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(201,168,76,0.3);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.contact-info-icon {
  font-size: 1.1rem;
  line-height: 1.6;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.contact-info-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.contact-info-link:hover {
  color: var(--gold);
}

/* Contact form card */
.contact-form-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}

.form-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  min-height: 44px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,0.12);
}

.form-group input::placeholder {
  color: #aab4c8;
}

.required {
  color: #e05a4a;
}

.form-error {
  color: #c0392b;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  min-height: 1.2rem;
}

.form-submit {
  margin-top: 0.5rem;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}

.form-success.visible {
  display: block;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.success-heading {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.success-text {
  font-size: 1rem;
  color: var(--gray-text);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.72rem;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.05em;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 360px;
  color: rgba(255,255,255,0.6);
}

.footer-col-heading {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 1.1rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  z-index: 999;
  line-height: 1;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-3px);
  background: var(--gold-light);
}

/* ============================================================
   RESPONSIVE — Tablet & Mobile
   ============================================================ */
@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-badge-box {
    max-width: 280px;
    margin-inline: auto;
  }

  .about-title {
    text-align: center;
  }

  .about-highlights {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding-block: 3.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .trust-bar-inner {
    gap: 1.25rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section {
    padding-block: 3.5rem;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .pricing-card {
    padding: 1.75rem 1.25rem;
  }
}
