/* ── Contact Form Styles ── */
.form-container {
  max-width: 700px;
  margin: 3rem auto;
}

.form-heading {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #075985;
  text-align: center;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #075985;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
}

.form-textarea {
  resize: vertical;
}

.form-recaptcha {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
}

.form-submit {
  padding: 1rem 2rem;
  background: #FF9500;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: #EA580C;
}

/* ── Block Section Styles ── */
.block-section {
  padding: 3rem 0 5rem;
}

.block-section-container {
  max-width: 100%;
}

.block-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: #075985;
}

.block-section p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.block-section ul {
  margin-left: 1.5rem;
  line-height: 1.8;
}

.block-section ul li {
  margin-bottom: 0.5rem;
}

/* ── Grid Section Styles ── */
.grid-section {
  padding: 2rem 0;
}

.grid-container {
  display: grid;
  gap: 1.5rem;
}

.grid-item {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  text-align: center;
}

.grid-item-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.grid-item-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #075985;
}

.grid-item-description {
  font-size: 0.95rem;
  color: #64748b;
}

/* ── Carousel Section Styles ── */
.carousel-section {
  padding: 2rem 0;
}

.carousel-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.carousel-item-image {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.carousel-item-title {
  font-weight: 700;
  font-size: 1rem;
  color: #075985;
}

.carousel-item-description {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

/* ── HTML Section Styles ── */
.html-section {
  padding: 1.5rem 0;
}

.html-content {
  line-height: 1.7;
  color: #475569;
}

.html-content h1,
.html-content h2,
.html-content h3 {
  color: #075985;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
}

.html-content p {
  margin-bottom: 1rem;
}

.html-content ul,
.html-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.html-content li {
  margin-bottom: 0.5rem;
}

.html-content a {
  color: #0ea5e9;
  text-decoration: underline;
}

.html-content a:hover {
  color: #0284c7;
}

/* ── Utility Classes ── */
.bg-light-sky {
  background: #e0f2fe;
}

.text-center {
  text-align: center;
}

.no-margin {
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .form-container {
    margin: 1.5rem auto;
    padding: 0 1rem;
  }

  .form-heading {
    font-size: 1.5rem;
  }

  .form-wrapper {
    gap: 1rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
  }

  .block-section {
    padding: 2rem 0 3rem;
  }

  .grid-container {
    gap: 1rem;
    grid-template-columns: 1fr !important;
  }

  .grid-item {
    padding: 1rem;
  }

  .cms-footer-grid {
    grid-template-columns: 1fr !important;
  }

  .carousel-item {
    flex-direction: column;
  }
}
