@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary-dark-blue: #0A2A55;
  --secondary-medium-blue: #5B9DF3;
  --light-ash-blue: #F0F8FF;
  --white: #FFFFFF;
  --red-accent: #E53935;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --shadow-sm: 0 2px 4px rgba(10, 42, 85, 0.1);
  --shadow-md: 0 4px 12px rgba(10, 42, 85, 0.15);
  --shadow-lg: 0 8px 24px rgba(10, 42, 85, 0.2);
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-dark-blue);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--secondary-medium-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #4a8de0;
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: scale(0.98);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.btn-secondary {
  background-color: var(--primary-dark-blue);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #0d3a6e;
  transform: scale(1.03);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--secondary-medium-blue);
  color: var(--secondary-medium-blue);
}

.btn-outline:hover {
  background-color: var(--secondary-medium-blue);
  color: var(--white);
}

section {
  padding: 80px 0;
}

.section-light {
  background-color: var(--light-ash-blue);
}

.section-dark {
  background-color: var(--primary-dark-blue);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--primary-dark-blue);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-left: 10px;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-desktop a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-medium-blue);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
  transform-origin: center;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  transform: scaleX(1);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--secondary-medium-blue);
}

.header-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: all var(--transition-medium);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: var(--primary-dark-blue);
  padding: 80px 30px 30px;
  transition: right var(--transition-medium);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  margin-bottom: 30px;
}

.mobile-nav a {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a:hover {
  color: var(--secondary-medium-blue);
}

.mobile-nav-cta {
  width: 100%;
  margin-top: 20px;
}

.mobile-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  border: none;
  padding: 0;
}

.mobile-social a:hover {
  background-color: var(--secondary-medium-blue);
}

.mobile-social svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero-banner {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 42, 85, 0.7), rgba(10, 42, 85, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 40px 20px;
}

.hero-content h1,
.hero-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-content .btn {
  margin: 0 10px;
}

.hero-small {
  min-height: 40vh;
}

.about-intro {
  display: grid;
  gap: 40px;
  align-items: center;
}

.about-intro-image img {
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.about-intro-text h2 {
  margin-bottom: 1.5rem;
}

.about-intro-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.services-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  text-align: center;
}

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

.service-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--light-ash-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--secondary-medium-blue);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-card a {
  color: var(--secondary-medium-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-card a:hover {
  color: var(--primary-dark-blue);
}

.features-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.feature-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-medium-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.feature-content h4 {
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 4rem;
  color: var(--light-ash-blue);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-top: 30px;
}

.testimonial-card cite {
  display: block;
  font-weight: 600;
  color: var(--primary-dark-blue);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: #FFD700;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark-blue) 0%, #0d3a6e 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.footer {
  background-color: var(--primary-dark-blue);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand p {
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--secondary-medium-blue);
  flex-shrink: 0;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links a {
  display: block;
  padding: 8px 0;
  color: var(--white);
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-medium-blue);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  transition: background-color var(--transition-fast);
}

.footer-social a:hover {
  background-color: var(--secondary-medium-blue);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-medium-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.back-to-top:hover {
  background-color: #4a8de0;
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.hero-about {
  background-image: url('../images/hero-about.png');
}

.hero-services {
  background-image: url('../images/hero-our-cars-services.png');
}

.hero-testimonials {
  background-image: url('../images/hero-testimonials.png');
}

.hero-contact {
  background-image: url('../images/hero-contact.png');
}

.about-section {
  padding: 80px 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

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

.team-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.team-card {
  text-align: center;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

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

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-card h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.values-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.value-card {
  text-align: center;
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--light-ash-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--secondary-medium-blue);
}

.value-card h3 {
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.inventory-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.inventory-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.inventory-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.inventory-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.inventory-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(10, 42, 85, 0.9), transparent);
  color: var(--white);
}

.inventory-card-overlay h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.inventory-card-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.inventory-card-overlay a {
  color: var(--secondary-medium-blue);
  font-weight: 600;
}

.service-list {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.service-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.service-item-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--light-ash-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item-icon svg {
  width: 25px;
  height: 25px;
  fill: var(--secondary-medium-blue);
}

.service-item-content h4 {
  margin-bottom: 0.5rem;
}

.service-item-content p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.process-timeline {
  position: relative;
}

.timeline-steps {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.timeline-step {
  text-align: center;
  position: relative;
}

.step-indicator {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--secondary-medium-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-indicator svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 25px;
  height: 25px;
  background-color: var(--primary-dark-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}

.timeline-step h4 {
  margin-bottom: 0.5rem;
}

.timeline-step p {
  color: var(--text-light);
  margin-bottom: 0;
}

.testimonial-full-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.contact-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-medium-blue);
  box-shadow: 0 0 0 3px rgba(91, 157, 243, 0.2);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  padding: 30px;
  background-color: var(--primary-dark-blue);
  border-radius: 10px;
  color: var(--white);
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  fill: var(--secondary-medium-blue);
  flex-shrink: 0;
}

.contact-info-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.contact-info-item a:hover {
  color: var(--secondary-medium-blue);
}

.location-map {
  margin-top: 30px;
}

.location-map iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 10px;
}

.business-hours h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hours-list {
  display: grid;
  gap: 10px;
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.hours-list span:last-child {
  opacity: 0.9;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item summary {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-dark-blue);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--secondary-medium-blue);
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 20px;
  color: var(--text-light);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .inventory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero-banner {
    min-height: 70vh;
  }
  
  .about-intro {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }
  
  .hamburger {
    display: none;
  }
  
  .header-cta {
    display: block;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .inventory-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-list {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .timeline-steps {
    grid-template-columns: repeat(4, 1fr);
    position: relative;
  }
  
  .timeline-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background-color: var(--secondary-medium-blue);
    opacity: 0.3;
  }
  
  .testimonial-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1.5fr 1fr;
  }
  
  .mobile-nav {
    display: none;
  }
  
  .overlay {
    display: none;
  }
}

@media (max-width: 1023px) {
  .header-cta {
    display: none;
  }
}
