/* Variables */
:root {
    --primary-color: #981a1e;
    --secondary-color: #ac4445;
    --background-color: #efdada;
    --text-color: #333333;
    --border-color: #ce9494;
}

/* Modified CSS */
#services {
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#services h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
    height: 100%;
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    /* background: var(--background-color); */
    padding: 1rem;
}

.service-content {
    padding: 1.5rem;
    text-align: center;
}

.service-content h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.25rem;
}

.service-details {
    display: none;
    background: white;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-details h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

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

.service-details li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.toggle-details {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.toggle-details:hover {
    background: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #services {
        padding: 1rem;
    }

    #services h2 {
        font-size: 2rem;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    #cracked-title, .why-header {
        font-size: 2rem;
    }

    .contact-title {
        font-size: 1.5rem;
    }
}




.contact-info {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
}

.info-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.label {
    font-weight: bold;
    min-width: 80px;
    color: var(--text-color);
}

.value {
    position: relative;
    padding-bottom: 2px;
    text-decoration: none;
    color: var(--text-color) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.value i {
    font-size: 1.1rem;
    color: var(--text-color);
}

.value::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.value:hover i {
    color: var(--primary-color);
}

.value:hover::after {
    transform: scaleX(1);
    background-color: var(--primary-color);
}

/* Specific hover effects for each type */
.location-link:hover i {
    color: var(--primary-color);
}

.phone-link:hover i {
    color: #28a745;
    /* Green (optional to keep variable if needed) */
}

.email-link:hover i {
    color: #ffc107;
    /* Yellow (optional to keep variable if needed) */
}

/* Responsive design */
@media (max-width: 480px) {
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}







.guarantees-section {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    background: #f3dede;
    padding: 40px 20px;
    border: 1px solid #e0bdbd;
    border-radius: 10px;
    overflow: visible;
  }

  .glider {
    margin: 0 40px; /* Make room for outside arrows */
  }

  .guarantee-item {
    background: white;
    border-radius: 16px;
    padding: 10px 15px;
    margin: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #444;
  }

  .guarantee-dot {
    width: 8px;
    height: 8px;
    background-color: #960f0f;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .glider-prev,
  .glider-next {
    background: #d28d8d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .glider-prev {
    left: -20px;
  }

  .glider-next {
    right: -20px;
  }

  .glider-dots {
    text-align: center;
    margin-top: 20px;
  }

  .glider-dots button {
    width: 10px;
    height: 10px;
    border: none;
    margin: 0 4px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }

  .glider-dots .glider-dot.active {
    background: #960f0f;
  }

  @media (max-width: 768px) {
    .guarantee-item {
      font-size: 0.8rem;
      padding: 6px 12px;
    }

    .glider-prev,
    .glider-next {
      width: 36px;
      height: 36px;
      font-size: 1rem;
    }

    .glider {
      margin: 0 30px;
    }

    .glider-prev {
      left: -15px;
    }

    .glider-next {
      right: -15px;
    }
  }







  #why-sec{
    padding-left: 20px;
    padding-right: 20px;
  }