
h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}
.subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 2rem;
}

.quote-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  background-color: var(--bg-primary);
  margin: 3rem 0;
}

.quote-form-wrapper {
  width: 100%;
  max-width: 800px;
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 8px 30px var(--shadow);
  padding: 2.5rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .quote-form-wrapper {
    padding: 1.5rem;
    border-radius: 8px;
  }
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.progress-container {
  margin-bottom: 2.5rem;
}

.progress-bar {
  height: 8px;
  background-color: var(--progress-bg);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.progress-fill {
  height: 100%;
  background-color: var(--accent);
  width: 16.66%; /* Initial width for step 1 (100% / 6 steps) */
  transition: width 0.4s ease;
}

.step-indicators {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 16.66%; /* 100% / 6 steps */
  transition: all 0.3s ease;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--gray);
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background-color: var(--accent);
  color: white;
}

.step-label {
  font-size: 0.85rem;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .step-label {
    font-size: 0.7rem;
  }
  
  .step-number {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
}

.form-step {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.form-step.active {
  display: block;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 123, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234A4A4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.required {
  color: var(--error);
  margin-left: 3px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.radio-option {
  position: relative;
  flex: 1 1 calc(50% - 12px);
  min-width: 120px;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-option label {
  display: block;
  padding: 12px 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin: 0;
}

.radio-option input[type="radio"]:checked + label {
  background-color: rgba(0, 200, 123, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.radio-option label:hover {
  border-color: var(--accent);
}

@media (max-width: 576px) {
  .radio-option {
    flex: 1 1 100%;
  }
}

.maintenance-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.maintenance-option {
  position: relative;
}

.maintenance-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.maintenance-option label {
  display: block;
  padding: 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.maintenance-option input[type="radio"]:checked + label {
  background-color: rgba(0, 200, 123, 0.1);
  border-color: var(--accent);
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.option-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.option-price {
  font-weight: 700;
  color: var(--accent);
}

.option-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.option-description ul {
  margin: 8px 0 0 20px;
}

.option-description ul li {
  margin-bottom: 5px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 12px;
}

button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-next,
.btn-submit {
  background-color: var(--accent);
  color: white;
}

.btn-next:hover,
.btn-submit:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-prev {
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
}

.btn-prev:hover {
  background-color: var(--border);
  color: var(--text-primary);
}

.summary-container {
  background-color: var(--bg-secondary);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.summary-section {
  margin-bottom: 20px;
}

.summary-section:last-child {
  margin-bottom: 0;
}

.summary-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
  margin-top: 10px;
}

.summary-content div {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.summary-content div:nth-child(odd) {
  font-weight: 500;
}

.success-message {
  text-align: center;
  animation: fadeIn 0.5s ease forwards;
}

.success-icon {
  margin: 0 auto 1.5rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(46, 204, 113, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--success);
}

.success-icon svg {
  width: 50px;
  height: 50px;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 2rem;
}

.btn-secondary,
.btn-primary {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background-color: var(--border);
}

@media (max-width: 768px) {
  .form-actions {
    flex-direction: column-reverse;
  }
  
  button {
    width: 100%;
    justify-content: center;
  }
  
  .summary-content {
    grid-template-columns: 1fr;
  }
  
  .success-actions {
    flex-direction: column;
  }
}

.maintenance-step,
.maintenance-step-content {
  transition: opacity 0.3s ease, height 0.3s ease;
}

.hidden-step {
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}



.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  gap: 0.75rem;
}

.logo svg {
  transition: transform 0.3s ease;
}

.logo:hover svg {
  transform: rotate(90deg);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  width: 24px;
  height: 24px;
}

.theme-toggle svg {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

[data-theme="light"] .dark-icon {
  opacity: 0;
  transform: rotate(90deg);
}

[data-theme="dark"] .light-icon {
  opacity: 0;
  transform: rotate(-90deg);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}

.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}



.footer-tagline {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 80%;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--footer-text);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.footer-nav h3,
.footer-services h3,
.footer-contact h3 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--footer-text);
}

.footer-nav ul,
.footer-services ul,
.footer-contact ul {
  list-style: none;
}

.footer-nav li,
.footer-services li {
  margin-bottom: 0.75rem;
}

.footer-nav a,
.footer-services a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-services a:hover {
  color: var(--accent);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

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

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

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--bg-primary);
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  }
  
  .main-nav.active {
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0;
    padding: 1.5rem;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  
  .header-actions {
    gap: 1rem;
  }
  
  .btn-primary.btn-sm {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .site-header {
    height: 70px;
    --header-height: 70px;
  }
  
  .logo span {
    font-size: 1.2rem;
  }
  
  .main-nav.active {
    height: calc(100vh - 70px);
  }
}
