* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.hero-section {
  background: linear-gradient(rgba(0, 50, 80, 0.8), rgba(0, 50, 80, 0.8)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23345" width="1200" height="600"/><path fill="%23456" d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.quote-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

label {
  display: block;
  text-align: start;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

input[type="text"],
input[type="tel"] {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus {
  outline: none;
  border-color: #4285f4;
}

.checkbox-group {
  margin: 25px 0;
  padding: 20px;
  background: #f1f7ff;
  border-radius: 5px;
  max-height: 300px;
  overflow-y: auto;
}

.checkbox-group label {
  font-weight: normal;
  display: flex;
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
}

.btn {
  background: #4285f4;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background: #3367d6;
}

.btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.additional-fields {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #eee;
}

.additional-fields.show {
  display: block;
}

.why-choose-section {
  padding: 4rem 2rem;
  background: #f8f9fa;
  text-align: center;
}

.why-choose-section h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #333;
}

.features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.feature {
  flex: 1;
  min-width: 250px;
  padding: 2rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #4285f4;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature p {
  color: #666;
  line-height: 1.6;
}

.loading {
  display: none;
  text-align: center;
  margin: 1rem 0;
}

.loading p {
  opacity: unset;
  margin-bottom: unset;

  color: #4285f4;
  font-size: 1.2rem;
}

.loading.show {
  display: block;
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #4285f4;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 0 auto 0.5rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 0.5rem;
}

.info-section {
  padding: 4rem 2rem;
  text-align: center;
  background-image: url("assets/suburb.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: lighten;
}

.info-content {
  border-radius: 8px;
  padding: 16px;
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}

.info-content h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  /* color: #333; */
}

.info-content p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.badges img {
  height: 50px;
  width: auto;
}

.warranty-coverage-section {
  padding: 4rem 2rem;
  background: white;
}

.warranty-coverage-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.coverage-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.coverage-intro p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.coverage-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.coverage-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.coverage-item {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
}

.coverage-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: white;
}

.coverage-icon.electrical {
  background: #3498db;
}
.coverage-icon.ac {
  background: #2ecc71;
}
.coverage-icon.washer {
  background: #9b59b6;
}
.coverage-icon.fridge {
  background: #34495e;
}
.coverage-icon.stove {
  background: #e74c3c;
}
.coverage-icon.plumbing {
  background: #f39c12;
}

.coverage-item h3 {
  font-size: 1.1rem;
  color: #333;
}

.coverage-item p {
  flex: 1fr;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
}

.coverage-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coverage-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  max-height: 600px;
}

.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bdc3c7;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  font-size: 0.9rem;
  color: #bdc3c7;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .features {
    flex-direction: column;
    gap: 2rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .coverage-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .coverage-items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .badges {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-section h3 {
    font-size: 0.9rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .quote-form {
    padding: 2rem 1.5rem;
  }
}

.logo {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
  font-variant: small-caps;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.disclaimer-container {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-container h1 {
  padding-bottom: 2rem;
  font-size: 2.5rem;
  color: #2d3748;
  font-weight: 800;
}

.disclaimer-container p {
  padding-bottom: 1.5rem;
  line-height: 1.8;
  color: #4a5568;
}
