* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #fafafa;
}

.hero-section {
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.9) 0%, rgba(49, 86, 239, 0.9) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%234a6cf7" width="1200" height="600"/><path fill="%233156ef" d="M0,400 Q300,200 600,350 T1200,300 L1200,600 L0,600 Z"/></svg>');
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-content {
  max-width: 900px;
  padding: 3rem 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 300;
}

.quote-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  max-width: 550px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-row .form-group {
  flex: 1;
}

label {
  display: block;
  text-align: start;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #2d3748;
  font-size: 0.95rem;
}

input[type="text"],
input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fff;
}

input[type="text"]:focus,
input[type="tel"]:focus {
  outline: none;
  border-color: #4a6cf7;
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
  transform: translateY(-1px);
}

.checkbox-group {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
  border-radius: 12px;
  max-height: 280px;
  overflow-y: auto;
  border: 1px solid #e2e8f0;
}

.checkbox-group label {
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 0;
  color: #4a5568;
  transition: color 0.3s ease;
}

.checkbox-group label:hover {
  color: #2d3748;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 12px;
  margin-top: 4px;
  transform: scale(1.1);
}

.btn {
  background: linear-gradient(135deg, #4a6cf7 0%, #3156ef 100%);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 108, 247, 0.4);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 108, 247, 0.6);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  background: #cbd5e0;
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}

.additional-fields {
  display: none;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
  animation: slideDown 0.3s ease-out;
}

.additional-fields.show {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.why-choose-section {
  padding: 6rem 2rem;
  background: #fff;
  text-align: center;
  position: relative;
}

.why-choose-section h2 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #2d3748;
  font-weight: 800;
  position: relative;
}

.why-choose-section h2::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #4a6cf7 0%, #3156ef 100%);
  border-radius: 2px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f7fafc;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #4a6cf7 0%, #3156ef 100%);
  border-radius: 20px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  box-shadow: 0 10px 30px rgba(74, 108, 247, 0.3);
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2d3748;
  font-weight: 700;
}

.feature p {
  color: #718096;
  line-height: 1.7;
  font-size: 1rem;
}

.loading {
  display: none;
  text-align: center;
  margin: 1.5rem 0;
}

.loading p {
  opacity: unset;
  margin-bottom: unset;
  color: #4a6cf7;
  font-size: 1.1rem;
  font-weight: 600;
}

.loading.show {
  display: block;
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #4a6cf7;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error {
  color: #e53e3e;
  font-size: 14px;
  margin-top: 0.5rem;
  font-weight: 500;
}

.info-section {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.info-content {
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2d3748;
  font-weight: 800;
}

.info-content p {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #4a5568;
  font-weight: 400;
}

.badges {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.badges img {
  height: 55px;
  width: auto;
  filter: grayscale(0.3);
  transition: all 0.3s ease;
}

.badges img:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

.warranty-coverage-section {
  padding: 6rem 2rem;
  background: #f7fafc;
}

.warranty-coverage-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d3748;
  font-weight: 800;
  position: relative;
}

.warranty-coverage-section h2::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #4a6cf7 0%, #3156ef 100%);
  border-radius: 2px;
}

.coverage-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.coverage-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #718096;
}

.coverage-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 4rem;
  align-items: start;
}

.coverage-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.coverage-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.coverage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.coverage-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.coverage-icon.electrical {
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
}
.coverage-icon.ac {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}
.coverage-icon.washer {
  background: linear-gradient(135deg, #9f7aea 0%, #805ad5 100%);
}
.coverage-icon.fridge {
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}
.coverage-icon.stove {
  background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
}
.coverage-icon.plumbing {
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
}

.coverage-text {
  flex: 1;
}

.coverage-item h3 {
  font-size: 1.2rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.coverage-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #718096;
}

.coverage-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coverage-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-height: 500px;
}

.footer {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
  padding: 4rem 2rem 2rem;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
  position: relative;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 3px;
  background: #4a6cf7;
  border-radius: 2px;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5e0;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section a:hover {
  color: #4a6cf7;
  transform: translateX(5px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #4a5568;
  font-size: 0.9rem;
  color: #a0aec0;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-section {
    min-height: 500px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }

  .features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .coverage-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .coverage-items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .badges {
    gap: 1.5rem;
  }

  .info-section,
  .why-choose-section,
  .warranty-coverage-section {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }

  .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;
}
