:root {
  --primary-color: #032B44;
  --accent-color: #2E4053;
  --bg-color: #f9f9f9;
  --text-color: #212529;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(220, 38, 38, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 49px;
}

section {
  padding: 78px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }

.tracking-number {
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-color);
}

img:not(.logo-img):not(.logo) {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo-img {
  max-width: 50px;
  height: auto;
}

.navbar-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.navbar-brand .site-name {
  margin-left: 0.5rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #b91c1c;
  border-color: #b91c1c;
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-outline-light {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary-color);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(7px);
  border: 1px solid var(--glass-border);
  padding: 50px;
  position: relative;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.hero-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(220, 38, 38, 0.7) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tracking-widget {
  position: relative;
  z-index: 2;
}

.widget-title {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.tracking-form .form-control,
.tracking-form .form-label {
  color: var(--text-color);
}

.quick-links {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.quick-link:hover {
  background: var(--primary-color);
  color: white;
}

.route-map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  opacity: 0.3;
  pointer-events: none;
}

.route-map {
  width: 100%;
  height: 100%;
}

.route-line {
  stroke-dasharray: 10, 5;
  animation: dash 30s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

.route-point {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.service-card {
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 21px 43px rgba(220, 38, 38, 0.15);
}

.service-icon {
  width: 82px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), #b91c1c);
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 0;
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary-color), transparent);
  opacity: 0.3;
  pointer-events: none;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.service-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color);
}

.service-features li i {
  color: var(--primary-color);
  font-size: 1rem;
}

.stats-section {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.stat-card {
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card .stat-icon {
  width: 57px;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary-color), #b91c1c);
  color: white;
  font-size: 1.5rem;
  border-radius: 0;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  color: var(--text-muted);
  font-size: 1rem;
  text-transform: none;
}

.feature-card {
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  width: 73px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #b91c1c);
  color: white;
  font-size: 1.75rem;
  border-radius: 0;
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--primary-color), transparent);
  opacity: 0.2;
  pointer-events: none;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.feature-description {
  color: var(--text-muted);
}

.coverage-map {
  padding: 2rem;
}

.coverage-map svg {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.coverage-region {
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.region-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.region-header i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.region-header h4 {
  margin: 0;
  color: var(--accent-color);
}

.region-description {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.region-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.country-badge {
  padding: 0.5rem 1rem;
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0;
}

.fleet-card {
  height: 100%;
  overflow: hidden;
}

.fleet-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.1);
}

.fleet-name {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.fleet-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.fleet-specs {
  display: flex;
  gap: 1.5rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-size: 0.875rem;
}

.spec-item i {
  color: var(--primary-color);
}

.testimonial-card {
  height: 100%;
  padding: 2rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  color: var(--accent-color);
}

.author-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.team-card {
  height: 100%;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(220, 38, 38, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 1rem;
}

.team-social a {
  width: 38px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--primary-color);
  color: white;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.team-role {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.accordion-glass .accordion-item {
  background: var(--glass-bg);
  backdrop-filter: blur(13px);
  border: 1px solid var(--glass-border);
  margin-bottom: 1rem;
}

.accordion-glass .accordion-button {
  background: transparent;
  color: var(--accent-color);
  font-weight: 600;
  padding: 1.5rem;
  border: none;
}

.accordion-glass .accordion-button:not(.collapsed) {
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary-color);
}

.accordion-glass .accordion-button:focus {
  box-shadow: none;
  border-color: var(--glass-border);
}

.accordion-glass .accordion-body {
  padding: 1.5rem;
  color: var(--text-color);
}

.step-number {
  display: inline-block;
  width: 41px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  background: var(--primary-color);
  color: white;
  border-radius: 0;
  font-weight: 700;
}

.cta-section {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.cta-card {
  padding: 4rem 3rem;
}

.cta-icon {
  width: 83px;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary-color), #b91c1c);
  color: white;
  font-size: 2rem;
  border-radius: 0;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.cta-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-contact {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
}

.contact-item i {
  color: var(--primary-color);
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.footer-glass {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 41px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: white;
  color: var(--primary-color);
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: white;
}

.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 77px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
}

.tracking-panel {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
}

.tracking-icon {
  width: 80px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #b91c1c);
  color: white;
  font-size: 2rem;
  border-radius: 0;
}

.tracking-input {
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif, monospace;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.tracking-status-card {
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.tracking-status-card:hover {
  transform: translateY(-5px);
}

.status-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary-color), #b91c1c);
  color: white;
  font-size: 1.5rem;
  border-radius: 0;
}

.status-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--accent-color);
}

.status-description {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.delivery-time-card {
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.delivery-type {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.delivery-time {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.delivery-description {
  color: var(--text-muted);
}

.quote-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
}

.quote-icon {
  width: 77px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #b91c1c);
  color: white;
  font-size: 2rem;
  border-radius: 0;
}

.benefit-card {
  padding: 2rem;
  height: 100%;
}

.benefit-icon {
  width: 62px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary-color), #b91c1c);
  color: white;
  font-size: 1.5rem;
  border-radius: 0;
}

.benefit-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--accent-color);
}

.benefit-description {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.blog-card {
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  z-index: 1;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.blog-excerpt {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.article-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 77px;
}

.article-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.article-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  border-radius: 0;
}

.article-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.article-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.article-body {
  padding: 3rem 0;
}

.article-body .lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.article-body p {
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.article-list {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.article-list li {
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.article-image-wrapper {
  margin: 3rem 0;
}

.article-highlight {
  padding: 2rem;
  margin: 3rem 0;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.article-highlight h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.article-cta {
  padding: 3rem;
  margin: 3rem 0;
}

.article-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.article-tags {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.article-tags i {
  color: var(--text-muted);
}

.tag {
  padding: 0.5rem 1rem;
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.share-link {
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
}

.share-link:hover {
  background: var(--primary-color);
  color: white;
}

.about-image-wrapper {
  border-radius: 0;
  overflow: hidden;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(220, 38, 38, 0.05);
  border-radius: 0;
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.mission-card {
  padding: 3rem 2rem;
  height: 100%;
}

.mission-icon {
  width: 68px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #b91c1c);
  color: white;
  font-size: 2rem;
  border-radius: 0;
}

.mission-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.mission-description {
  color: var(--text-muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  padding: 2rem;
  position: relative;
}

.timeline-year {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.timeline-description {
  color: var(--text-muted);
}

.process-step {
  padding: 2rem;
  height: 100%;
  position: relative;
}

.process-step .step-number {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}

.step-icon {
  width: 57px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #b91c1c);
  color: white;
  font-size: 1.5rem;
  border-radius: 0;
}

.step-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.step-description {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.contact-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
}

.contact-icon {
  width: 49px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), #b91c1c);
  color: white;
  font-size: 1.25rem;
  border-radius: 0;
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.contact-details p {
  color: var(--text-color);
  margin: 0;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
}

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

.contact-form-wrapper {
  padding: 3rem;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 0.75rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.1);
}

.legal-content {
  padding: 4rem;
}

.legal-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.legal-meta {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.legal-content p {
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.legal-list {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.legal-list li {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.pricing-card {
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 17px 38px rgba(220, 38, 38, 0.15);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
}

.featured-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
}

.pricing-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.pricing-description {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color);
}

.pricing-features li i {
  color: var(--primary-color);
}

.service-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.service-benefits li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-color);
}

.service-benefits li i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

@media (max-width: 992px) {
  .container {
    padding: 0 22px;
  }

  section {
    padding: 58px 0;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .hero-section {
    min-height: 60vh;
  }

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

  .hero-lead {
    font-size: 1.125rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
  }

  .glass-panel {
    padding: 35px;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 14px;
  }

  section {
    padding: 46px 0;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .glass-panel {
    padding: 22px;
  }

  .tracking-panel,
  .quote-panel {
    padding: 2rem;
  }

  .legal-content {
    padding: 2rem;
  }

  .cta-card {
    padding: 3rem 2rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }
}
