* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --parker-red: #BD2C2C;
  --dark-slate-gray: #333333;
  --snow: #FAFAFA;
  --dark-blue: #004B7A;
  --medium-blue: #0063A3;
  --light-blue: #93CAEE;
  --parker-white: #FFFFFF;
  --charcoal: #333333;
}
body {
  font-family: 'League Spartan', sans-serif;
  line-height: 1.6;
  color: var(--dark-slate-gray);
  font-size: 18px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
/* UNIVERSAL BUTTON STYLES */
.btn-primary {
  background: var(--parker-red);
  color: white;
  border: 2px solid var(--parker-red);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(189, 44, 44, 0.3);
  line-height: 1;
}
.btn-primary .material-icons {
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
  margin-top: -5px;
}
.btn-primary:hover {
  background: #a02424;
  border-color: #a02424;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(189, 44, 44, 0.4);
}
.btn-secondary {
  background: white;
  color: var(--parker-red);
  border: 2px solid var(--parker-red);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(189, 44, 44, 0.2);
  line-height: 1;
}
.btn-secondary .material-icons {
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
  margin-top: -2px;
}
.btn-secondary:hover {
  background: var(--parker-red);
  color: white;
  border-color: var(--parker-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(189, 44, 44, 0.3);
}
.btn-tertiary {
  background: var(--snow);
  color: var(--dark-blue);
  border: 2px solid #e5e5e5;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  line-height: 1;
}
.btn-tertiary .material-icons {
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
  transition: transform 0.3s ease;
  display: inline-block;
  margin-top: -2px;
}
.btn-tertiary:hover {
  background: white;
  color: var(--parker-red);
  border-color: var(--parker-red);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.btn-tertiary:hover .material-icons {
  transform: translateX(3px);
}
.btn-large {
  padding: 16px 32px;
  font-size: 20px;
}
.btn-large .material-icons {
  font-size: 24px;
}
.btn-medium {
  padding: 12px 24px;
  font-size: 18px;
}
.btn-medium .material-icons {
  font-size: 20px;
}
.btn-small {
  padding: 10px 20px 8px 20px;
  font-size: 16px;
}
.btn-small .material-icons {
  font-size: 18px;
}
/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(0, 75, 122, 0.85) 0%, rgba(0, 99, 163, 0.85) 100%), url('../images/tech-van.jpg') center/cover;
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  font-family: 'League Spartan', sans-serif;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-item .material-icons {
  background: var(--parker-red);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: -6px;
}
.hero-image {
  text-align: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
/* Button Showcase Section */
.button-showcase-section {
  padding: 80px 0;
  background: white;
}
.button-showcase-header {
  text-align: center;
  margin-bottom: 60px;
}
.button-showcase-header h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 15px;
}
.button-showcase-header p {
  font-size: 18px;
  color: var(--dark-slate-gray);
  max-width: 600px;
  margin: 0 auto;
  font-family: 'League Spartan', sans-serif;
}
.button-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
.button-demo {
  text-align: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.button-demo h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-blue);
}
.button-demo p {
  margin-bottom: 20px;
  font-size: 18px;
  opacity: 0.8;
  font-family: 'League Spartan', sans-serif;
}
.button-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.size-demo {
  margin-bottom: 40px;
}
.size-demo h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 20px;
}
/* Services Section */
.services {
  padding: 80px 0;
  background: var(--snow);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 15px;
}
.section-header p {
  font-size: 18px;
  color: var(--dark-slate-gray);
  max-width: 600px;
  margin: 0 auto;
  font-family: 'League Spartan', sans-serif;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-icon {
  color: var(--parker-red);
  margin-bottom: 20px;
}
.service-icon .material-icons {
  font-size: 48px;
  color: var(--parker-red);
}
.service-card h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 15px;
}
.service-card p {
  font-family: 'League Spartan', sans-serif;
}
/* Why Choose Us Section */
.why-choose {
  padding: 80px 0;
  background: white;
}
.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-choose-text h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 20px;
}
.why-choose-text p {
  font-size: 18px;
  margin-bottom: 30px;
  font-family: 'League Spartan', sans-serif;
  text-align: center;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.benefit-item {
  text-align: center;
}
.benefit-icon {
  width: 80px;
  height: 80px;
  background: #BD2C2C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}
.benefit-icon .material-icons {
  font-size: 32px;
  color: white;
}
.benefit-item h4 {
  font-family: 'League Spartan', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 10px;
}
.benefit-item p {
  font-family: 'League Spartan', sans-serif;
}
/* CTA Section */
.cta-section {
  background: var(--dark-blue);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  font-family: 'League Spartan', sans-serif;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Footer */
.footer {
  background: var(--dark-slate-gray);
  color: white;
  padding: 60px 0 30px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-section h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 10px;
}
.footer-section ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  font-family: 'League Spartan', sans-serif;
}
.footer-section ul li a:hover {
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
}
.footer-bottom p {
  font-family: 'League Spartan', sans-serif;
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .nav-container {
    padding: 0 20px;
  }
  /* Universal mobile button consistency */
  .btn-primary, .btn-secondary, .btn-tertiary {
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    line-height: 1.2;
  }
  .btn-large {
    min-height: 56px;
    padding: 16px 24px;
    font-size: 18px;
  }
  .btn-medium {
    min-height: 52px;
    padding: 14px 20px;
    font-size: 18px;
  }
  .btn-small {
    min-height: 44px;
    padding: 12px 18px;
    font-size: 18px;
  }
  .btn-primary .material-icons, .btn-secondary .material-icons, .btn-tertiary .material-icons {
    font-size: 20px;
    line-height: 1;
    margin-top: -5px;
  }
  .btn-large .material-icons {
    font-size: 22px;
  }
  .btn-small .material-icons {
    font-size: 18px;
  }
  /* Hero Mobile */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text h1 {
    font-size: 36px;
  }
  .hero-text p {
    font-size: 22px;
  }
  .hero-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  /* Button Showcase Mobile */
  .button-demo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  /* Section Headers Mobile */
  .section-header h2 {
    font-size: 30px;
    line-height: 2rem;
  }
  .section-header p {
    font-size: 18px;
  }
  .button-showcase-header h2 {
    font-size: 30px;
    line-height: 2rem;
  }
  /* Services Mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 30px 20px;
  }
  /* Why Choose Mobile */
  .why-choose-content {
    grid-template-columns: 1fr;
  }
  .why-choose-text h2 {
    font-size: 30px;
    line-height: 2rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  /* CTA Mobile */
  .cta-section h2 {
    font-size: 30px;
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .hero-text .btn-primary, .hero-text .btn-secondary {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .cta-buttons .btn-primary, .cta-buttons .btn-secondary {
    width: 100%;
  }
  .button-row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  .button-row .btn-primary, .button-row .btn-secondary, .button-row .btn-tertiary {
    width: 100%;
    max-width: 350px;
  }
  .mobile-cta-section .cta-button {
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    font-size: 16px;
  }
  .mobile-phone {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: var(--parker-red);
    text-decoration: none;
    margin-bottom: 15px;
    font-family: 'League Spartan', sans-serif;
    text-align: center;
  }
  .cta-section .btn-primary, .cta-section .btn-secondary, .cta-section .btn-tertiary {
    width: 100%;
    margin-bottom: 15px;
  }
  .hero-text .cta-button, .cta-section .cta-button, .cta-section .cta-button-secondary, .mobile-cta-section .cta-button {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .nav-container {
    padding: 0 15px;
  }
  .logo img {
    height: 3.5rem;
  }
  .phone-number {
    font-size: 18px;
  }
  .header-actions .cta-button {
    min-width: 150px;
    max-width: 180px;
    padding: 10px 16px;
    font-size: 16px;
    min-height: 40px;
  }
  .mobile-action-row {
    gap: 12px;
  }
  .hero-text h1 {
    font-size: 36px;
  }
  .section-header h2 {
    font-size: 30px;
    line-height: 2rem;
  }
  .button-showcase-header h2 {
    font-size: 30px;
    line-height: 2rem;
  }
  .why-choose-text h2 {
    font-size: 30px;
    line-height: 2rem;
    text-align: center;
  }
  .cta-section h2 {
    font-size: 30px;
    line-height: 2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .mobile-menu {
    width: 280px;
    right: -300px;
  }
  .button-demo {
    padding: 20px;
  }
  .btn-primary, .btn-secondary, .btn-tertiary {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 24px;
  }
  .btn-large {
    min-height: 52px;
    padding: 14px 20px;
    font-size: 24px;
  }
  .btn-small {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 18px;
  }
  .mobile-phone {
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  .header-actions .cta-button {
    min-width: 130px;
    max-width: 150px;
    padding: 8px 12px;
    font-size: 12px;
    min-height: 36px;
  }
  .mobile-action-row {
    gap: 8px;
  }
  .phone-number {
    font-size: 15px;
  }
  .container {
    padding: 0 15px;
  }
  .nav-container {
    padding: 0 15px;
  }
}
/* Fix inline styled section titles on mobile */
@media (max-width: 768px) {
  section[style*="background: var(--snow)"] h2[style*="font-size: 32px"] {
    font-size: 30px !important;
    line-height: 2rem !important;
  }
  section[style*="background: var(--dark-blue)"] h2[style*="font-size: 32px"] {
    font-size: 30px !important;
    line-height: 2rem !important;
  }
  h2[style*="font-size: 32px"] {
    font-size: 30px !important;
    line-height: 2rem !important;
  }
}
@media (max-width: 480px) {
  section[style*="background: var(--snow)"] h2[style*="font-size: 32px"], section[style*="background: var(--dark-blue)"] h2[style*="font-size: 32px"], h2[style*="font-size: 32px"] {
    font-size: 30px !important;
    line-height: 2rem !important;
  }
}