/* CSS Variables - Design System */
:root {
  /* Colors */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(215, 25%, 27%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 25%, 27%);
  --primary: hsl(213, 94%, 35%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(24, 100%, 50%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(210, 40%, 96%);
  --muted-foreground: hsl(215, 16%, 47%);
  --accent: hsl(24, 100%, 50%);
  --accent-foreground: hsl(0, 0%, 100%);
  --success: hsl(142, 76%, 36%);
  --success-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);
  --border: hsl(214, 32%, 91%);
  --input: hsl(214, 32%, 91%);
  --ring: hsl(213, 94%, 35%);

  /* Custom design tokens */
  --gradient-hero: linear-gradient(135deg, hsl(213, 94%, 35%) 0%, hsl(213, 94%, 45%) 100%);
  --gradient-section: linear-gradient(180deg, hsl(210, 40%, 98%) 0%, hsl(0, 0%, 100%) 100%);
  --shadow-soft: 0 2px 8px hsl(213, 94%, 35% / 0.1);
  --shadow-medium: 0 4px 16px hsl(213, 94%, 35% / 0.15);
  --shadow-strong: 0 8px 32px hsl(213, 94%, 35% / 0.2);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.header-subtitle {
  display: none;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .header-subtitle {
    display: inline;
  }
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-phone:hover {
  color: hsl(213, 94%, 45%);
}

.phone-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.phone-text {
  display: none;
  font-weight: 600;
  font-size: 1.125rem;
}

@media (min-width: 640px) {
  .phone-text {
    display: inline;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn-hero {
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: none;
}

@media (min-width: 768px) {
  .btn-hero {
    display: inline-flex;
  }
}

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

.btn-cta {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero-section {
  position: relative;
  background-color: var(--foreground);
  color: var(--background);
  padding: 4rem 0;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("../assets/hero-background.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

.badge-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--success);
}

.badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--background);
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .thumbnail-gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}

.thumbnail {
  aspect-ratio: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.thumbnail:hover {
  opacity: 0.8;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quote Form */
.hero-form {
  position: sticky;
  top: 6rem;
}

.quote-form {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(13, 110, 253, 0.2);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-strong);
}

.form-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.form-group {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
  align-items: center;
}

.form-label {
  text-align: right;
  font-weight: 500;
  color: var(--foreground);
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid var(--input);
  border-radius: 0.375rem;
  background-color: var(--background);
  color: var(--foreground);
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 4rem;
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--foreground);
  margin-top: 0.75rem;
}

.form-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.form-link:hover {
  text-decoration: underline;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

/* Why Choose Section */
.why-choose-section {
  padding: 5rem 0;
  background: var(--gradient-section);
}

.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transform: translateY(-4px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(13, 110, 253, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--muted-foreground);
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.process-steps {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  position: relative;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.step-content {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  height: 100%;
}

.step-content:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

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

.step-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-foreground);
}

.step-number {
  font-size: 3rem;
  font-weight: bold;
  color: rgba(13, 110, 253, 0.2);
}

.step-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--muted-foreground);
}

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

/* Service Areas Section */
.service-areas-section {
  padding: 5rem 0;
  background: var(--gradient-section);
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(13, 110, 253, 0.1);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.service-badge .badge-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.service-badge span {
  color: var(--primary);
  font-weight: 600;
}

.areas-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

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

.area-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.area-item span {
  font-weight: 500;
}

.areas-note {
  text-align: center;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
}

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

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.gallery-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--foreground);
  text-align: center;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.before-after-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.before-after-item:hover {
  transform: scale(1.05);
}

.before-after-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 0.875rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.before-after-label.before {
  background-color: var(--destructive);
  color: var(--destructive-foreground);
}

.before-after-label.after {
  background-color: var(--success);
  color: var(--success-foreground);
}

/* Ceiling Types Section */
.ceiling-types-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, var(--background), rgba(210, 210, 210, 0.2));
}

.ceiling-types-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ceiling-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ceiling-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ceiling-type-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.ceiling-type-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.ceiling-image {
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  overflow: hidden;
}

.ceiling-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ceiling-type-card:hover .ceiling-image img {
  transform: scale(1.1);
}

.ceiling-content {
  padding: 1.5rem;
}

.ceiling-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.ceiling-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--foreground);
}

.ceiling-status {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid;
}

.ceiling-status.unpainted {
  background-color: rgba(13, 110, 253, 0.2);
  color: var(--primary);
  border-color: rgba(13, 110, 253, 0.3);
}

.ceiling-status.painted {
  background-color: rgba(34, 197, 94, 0.2);
  color: var(--success);
  border-color: rgba(34, 197, 94, 0.3);
}

.ceiling-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Asbestos Warning Section */
.asbestos-warning-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, rgba(210, 210, 210, 0.2), var(--background));
}

.asbestos-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .asbestos-content {
    grid-template-columns: 1fr 1fr;
  }
}

.asbestos-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.warning-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--destructive);
}

.asbestos-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .asbestos-title {
    font-size: 2.25rem;
  }
}

.asbestos-description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.125rem;
  color: rgba(33, 37, 41, 0.9);
  line-height: 1.7;
}

.asbestos-warning-box {
  background-color: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.warning-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--destructive);
}

.asbestos-image {
  position: relative;
}

.image-container {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: var(--destructive);
  color: var(--destructive-foreground);
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.image-badge p {
  font-weight: bold;
  font-size: 0.875rem;
}

/* Additional Services Section */
.additional-services-section {
  padding: 5rem 0;
  background: var(--gradient-section);
}

.services-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: var(--transition-smooth);
  text-align: center;
}

.service-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(251, 146, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--secondary);
}

.service-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.service-description {
  color: var(--muted-foreground);
}

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

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonial-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: var(--transition-smooth);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  color: rgba(13, 110, 253, 0.1);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary);
}

.testimonial-text {
  color: var(--foreground);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.author-name {
  font-weight: bold;
  color: var(--foreground);
}

.author-location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Final CTA Section */
.final-cta-section {
  padding: 5rem 0;
  background-color: var(--foreground);
  color: var(--background);
}

.final-cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .final-cta-title {
    font-size: 3.75rem;
  }
}

.final-cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .final-cta-description {
    font-size: 1.5rem;
  }
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.final-cta-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.footer-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 8rem;
  right: 8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
}

.lightbox-close:hover {
  color: #d1d5db;
  background-color: rgba(255, 255, 255, 0.1);
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .form-group {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .form-label {
    text-align: left;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.3s ease-out;
}


input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-cta.btn-lg.btn-full {
    background-color: #1f51a9;
}


