

@import url('https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css');


* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
}


[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
  color: inherit;
}


:root {
  --primary-blue: #1a365d;
  --secondary-blue: #2c5282;
  --accent-orange: #ed8936;
  --light-gray: #e2e8f0;
  --dark-gray: #4a5568;
  --success-green: #38a169;
  --warning-yellow: #d69e2e;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
}

.bg-navy {
  background-color: var(--primary-blue); 
  color: white;
}

.bg-navy .title {
  color: var(--light-gray);
}

.bg-navy .card .title {
  color: var(--primary-blue);
}

.bg-navy .subtitle {
  color: var(--light-gray);
  opacity: 0.7;
}

.bg-navy .content {
  color: var(--light-gray)
}

.button {
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  padding: 0.75rem 1.5rem;
  min-height: 44px;
}

.button.is-primary {
  background-color: var(--primary-blue);
  color: white;
}

.hero .button.is-primary {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-blue);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.hero .button.is-outlined {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: rgba(255, 255, 255, 0.9);
}

.hero .button.is-primary:hover {
  background-color: rgba(255, 255, 255, 1);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.hero .button.is-outlined:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.button.is-primary:hover {
  background-color: var(--secondary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.button.is-secondary {
  background-color: var(--accent-orange);
  color: white;
}

.button.is-secondary:hover {
  background-color: #dd7a26;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 137, 54, 0.3);
}

.button.is-outlined {
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.button.is-outlined:hover {
  background-color: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}


.bg-navy .button.is-outlined {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.bg-navy .button.is-outlined:hover {
  background-color: white;
  color: var(--primary-blue);
  transform: translateY(-2px);
}


.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  padding: 0 1rem;
}

.navbar-burger {
  height: 3.25rem;
  width: 3.25rem;
}

.navbar-burger span {
  height: 2px;
}

.navbar-item {
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-item:hover {
  color: var(--primary-blue);
}


.hero {
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


.card {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-content {
  padding: 1.5rem;
}


/* Enhanced Services Section */
.enhanced-services-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  margin: 1rem auto;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card-enhanced {
  position: relative;
}

.service-card {
  text-align: center;
  min-height: 350px;
  transition: all 0.3s ease;
  border: none;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card .buttons {
  justify-content: center;
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 54, 93, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.service-icon-large {
  font-size: 3rem;
  color: white;
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-orange);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card .card-icon {
  display: none;
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin: 0.5rem 0;
}

.service-description {
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.service-features span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--primary-blue);
  font-weight: 500;
}

.service-features i {
  color: var(--success-green);
}

.services-cta {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.services-cta .title.is-4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.services-cta p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}


.testimonial-card {
  border-left: 4px solid var(--accent-orange);
  background-color: white;
}

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

.testimonial-author .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}


.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.input, .textarea {
  border-radius: 6px;
  border: 2px solid var(--light-gray);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.input:focus, .textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}


.footer {
  background-color: var(--primary-blue);
  color: white;
  padding: 3rem 1.5rem;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent-orange);
}

.footer h4, .footer h3 {
  color: inherit;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 54, 93, 0.95);
  color: white;
  padding: 1rem 2rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.cookie-consent-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  margin-right: 1rem;
}

.cookie-consent-buttons {
  display: flex;
  gap: 0.5rem;
}


.emergency-banner {
  background-color: var(--warning-yellow);
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  font-weight: 600;
}


.team-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.team-member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  display: block;
}


.process-step {
  position: relative;
  padding: 2rem 1rem;
  text-align: center;
  min-height: 200px;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: var(--light-gray);
  z-index: 1;
}

.process-step:last-child::before {
  display: none;
}

.step-number {
  background-color: var(--primary-blue);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 600;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}


@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .navbar-menu {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-text {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .emergency-banner {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.columns-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}


.modal-content {
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  margin: 2rem auto;
}


@media print {
  .navbar, .cookie-consent-banner, .footer {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
}


/* Cookie consent button styles */
.cookie-accept-btn {
  background-color: var(--success-green);
  color: white;
}

.cookie-decline-btn {
  background-color: transparent;
  border: 2px solid white !important;
  color: white !important;
}

.cookie-decline-btn:hover {
  background-color: white !important;
  color: var(--primary-blue) !important;
}


/* Text utilities */
.has-text-white {
  color: white !important;
}

.has-text-centered {
  text-align: center !important;
}


/* Hero section utilities */
.hero.is-medium {
  min-height: 50vh;
}

.is-vcentered {
  display: flex;
  align-items: center;
}


/* Hidden utilities */
.is-hidden-mobile {
  display: none !important;
}


/* Title and subtitle utilities */
.title.is-1 {
  font-size: 3rem;
  line-height: 1.2;
}

.subtitle.is-3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
}


/* Button size utilities */
.button.is-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.button.is-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}


/* Width utilities */
.is-fullwidth {
  width: 100% !important;
}


/* Navbar utilities */
.navbar-start,
.navbar-end {
  display: flex;
  align-items: center;
}

.navbar-menu {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.buttons .button {
  margin: 0;
}

.buttons.is-centered {
  justify-content: center;
}


/* Form utilities */
.field {
  margin-bottom: 1.5rem;
}

.control {
  width: 100%;
}

.select {
  width: 100%;
}

.select select {
  width: 100%;
  border-radius: 6px;
  border: 2px solid var(--light-gray);
  padding: 0.75rem 1rem;
  background-color: white;
  cursor: pointer;
}

.select select:focus {
  border-color: var(--primary-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}


/* Content utilities */
.block {
  margin-bottom: 1.5rem;
}

.title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.subtitle {
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.content {
  color: var(--dark-gray);
  line-height: 1.6;
}


/* Avatar utility */
.avatar {
  border-radius: 50%;
  object-fit: cover;
}


/* Enhanced textarea styling */
.textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .is-hidden-mobile {
    display: block !important;
  }
  
  .buttons {
    flex-direction: column;
  }
  
  .buttons .button {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .navbar-menu.is-active {
    transform: translateX(0);
  }
}


/* Enhanced services section mobile styles */
@media (max-width: 768px) {
  .enhanced-services-section {
    padding: 2rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    min-height: auto;
  }
  
  .service-image {
    height: 180px;
  }
  
  .service-features {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .services-cta {
    padding: 1.5rem;
  }
  
  .services-cta .title.is-4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .enhanced-services-section {
    padding: 1.5rem 0;
  }
  
  .service-image {
    height: 150px;
  }
  
  .service-card .card-content {
    padding: 1.25rem;
  }
  
  .service-description {
    font-size: 0.875rem;
  }
  
  .service-features span {
    font-size: 0.75rem;
  }
  
  .buttons {
    flex-direction: column;
  }
  
  .buttons .button {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

/* Enhanced Collision Repair Section Styles */
.service-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.service-description {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 500;
}

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

.service-list {
    list-style: none;
    padding: 0;
}

/* Testimonial and Trust Elements */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-orange);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-content {
    color: var(--dark-gray);
}

.testimonial-rating {
    color: var(--warning-yellow);
    margin-bottom: 1rem;
}

.testimonial-rating i {
    margin-right: 0.25rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.testimonial-author strong {
    color: var(--primary-blue);
}

.testimonial-author small {
    color: var(--dark-gray);
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
}

.trust-item i {
    display: block;
    margin-bottom: 0.5rem;
}

.trust-item span {
    font-size: 0.875rem;
    color: var(--dark-gray);
}

/* Enhanced service list styles */
.service-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.service-list li:hover {
    color: var(--primary-blue);
}

.service-list li:last-child {
    border-bottom: none;
}

/* Process step smaller styles */
.process-step-smaller {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.process-step-smaller:hover {
    transform: translateY(-3px);
    background-color: rgba(26, 54, 93, 0.05);
}

.process-step-smaller div {
    background: var(--primary-blue);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    font-size: 0.875rem;
}

.process-step-smaller p {
    font-size: 0.875rem;
    color: var(--dark-gray);
    margin: 0;
}

/* Image overlay styles */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay div {
    text-align: center;
    color: white;
}

.image-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.service-overlay-image:hover .image-overlay {
    opacity: 1;
}

/* Certification badge styles */
.certification-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--success-green), #2f855a);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.certification-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4);
}

/* Stat item styles */
.stat-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Additional service icon styles */
.icon-service {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

/* Process grid styles */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/* Button group styles */
.button-group {
    margin-top: 2rem;
}

/* Service image container styles */
.service-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.service-overlay-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.service-overlay-image:hover {
    transform: translateY(-5px);
}

.service-img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.service-overlay-image:hover .service-img {
    transform: scale(1.05);
}

/* Enhanced testimonial avatar styles */
.avatar-primary {
    background: var(--primary-blue) !important;
}

.avatar-orange {
    background: var(--accent-orange) !important;
}

/* Service features styles */
.service-features {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 500;
}

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

/* Service stats styles */
.service-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Service description styles */
.service-description {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Section header styles */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    margin: 1rem auto;
    border-radius: 2px;
}

.service-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.service-list li:hover {
    color: var(--primary-blue);
}

.service-list li:last-child {
    border-bottom: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.process-step-smaller {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.process-step-smaller:hover {
    transform: translateY(-3px);
    background-color: rgba(26, 54, 93, 0.05);
}

.process-step-smaller div {
    background: var(--primary-blue);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    font-size: 0.875rem;
}

.process-step-smaller p {
    font-size: 0.875rem;
    color: var(--dark-gray);
    margin: 0;
}

.service-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.service-overlay-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.service-overlay-image:hover {
    transform: translateY(-5px);
}

.service-overlay-image:hover .image-overlay {
    opacity: 1;
}

.service-overlay-image:hover .service-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay div {
    text-align: center;
    color: white;
}

.image-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.certification-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--success-green), #2f855a);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.certification-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4);
}

.services-cta {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.services-cta .title.is-4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.services-cta p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for enhanced collision repair section */
@media (max-width: 768px) {
    .service-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .certification-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .service-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .services-cta {
        padding: 1.5rem;
    }
    
    .services-cta .title.is-4 {
        font-size: 1.25rem;
    }
}

/* Button style utilities */
.button.is-light {
  background-color: #f8f9fa;
  color: #212529;
  border: 1px solid #dee2e6;
}

.button.is-light:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Title size utilities */
.title.is-2 {
  font-size: 2rem;
  margin-top: 2rem;
}

.title.is-4 {
  font-size: 1.5rem;
}

.title.is-5 {
  font-size: 1.25rem;
}

/* Subtitle utilities */
.subtitle {
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

/* Price styling */
.price {
  font-size: 2rem;
  font-weight: 600;
  margin: 1rem 0;
  color: var(--accent-orange);
}

/* Box container */
.box {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

/* Columns grid system */
.columns {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}

.columns.is-centered {
  justify-content: center;
}

.column {
  flex: 1;
  padding: 0 0.75rem;
  min-width: 0;
}

.column.is-8-desktop {
  flex: none;
  width: 66.6666667%;
}

.column.is-6-desktop {
  flex: none;
  width: 50%;
}

.column.is-7-desktop {
  flex: none;
  width: 58.3333333%;
}

.column.is-5-desktop {
  flex: none;
  width: 41.6666667%;
}

.column.is-4-desktop {
  flex: none;
  width: 33.3333333%;
}

.has-text-right-desktop {
  text-align: right;
}

/* Accordion styles */
.accordion {
  margin-bottom: 1rem;
}

.accordion-item {
  margin-bottom: 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  background-color: white;
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #f8f9fa;
}

.bg-navy .accordion-header, .bg-navy .accordion-header .title {
  color:var(--primary-blue);
}

.accordion-icon {
  font-weight: bold;
  font-size: 1.2rem;
}

.accordion-content {
  padding: 0 1.5rem;
  display: none;
  transition: all 0.3s ease;
}

.accordion-content[style*="display: block"] {
  display: block !important;
  padding: 1.5rem;
}

.bg-navy .accordion-content {
  background-color: white;
  color: var(--dark-gray)
}