* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", sans-serif;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
  color: var(--primary-color);
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

h3 {
  font-size: 1.375rem;
  font-weight: 600;
}

/* VARIABLES */

:root {
  --primary-color: #0a2342;
  --secondary-color: #fafaf8;
  --clr-neutral-white: #fff;
  --accent-color: #046307;
  --section-bg-color: #e8f7ef;
  --cta-btn-hover-color: #c65a00;
  --border-color: #ddd;
  --whatsapp-color: #25d366;
  --card-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --card-border-radius: 0.75rem;
  --card-padding: 1.5rem;
  --section-padding: 5rem 1rem;
}

section {
  padding: var(--section-padding);
}

#how-it-works,
#service-areas,
#process,
#cleaning-standards,
#laundry-tips,
#who-we-serve,
#pricing-explainer {
  background-color: var(--section-bg-color);
}

#pricing,
#pricing-hero,
#about,
#about-story,
#contact,
#contact-hero,
#contact-info {
  background: var(--secondary-color);
}

.hero-image img,
.service-card img,
.about-image img,
.about-story-image img {
  width: 100%;
  height: auto;
}

.hero-image img,
.about-image img,
.about-story-image img {
  border-radius: 0.75rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.section-label {
  display: inline-flex;
  background-color: var(--section-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--primary-color);
  padding: 0.375rem 0.75rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-subtitle,
.pricing-list-subtitle,
.benefits-subtitle,
.services-hero-subtext,
.services-subtitle,
.why-subtitle,
.service-areas-subtitle,
.steps-subtitle,
.testimonials-subtitle,
.final-cta-subtitle,
.faq-subtitle,
.contact-subtitle,
.map-subtitle,
.about-values-subtitle,
.process-subtitle,
.what-we-clean-subtitle,
.who-we-serve-subtitle,
.pricing-explainer-subtitle,
.contact-help-subtitle {
  max-width: 37.5rem;
  margin: 0 auto;
  opacity: 0.8;
  text-align: center;
  font-size: 1.1rem;
}

.benefit-description,
.why-summary,
.service-description,
.step-description,
.value-description,
.pricing-description,
.process-summary,
.garment-description,
.pricing-explainer-summary,
.contact-help-summary {
  opacity: 0.8;
  font-size: 0.95rem;
}

.why-grid,
.testimonials-grid,
.contact-info-grid,
.booking-grid,
.garments-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  margin-top: 2.5rem;
  justify-content: center;
}

.services-grid,
.steps-flow,
.values-grid,
.benefits-grid,
.process-grid,
.pricing-explainer-grid,
.contact-help-grid {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  margin-top: 2.5rem;
  justify-content: center;
}

.service-card,
.why-card,
.pricing-card,
.value-card,
.testimonial-card,
.benefit-card,
.garment-card,
.contact-help-card {
  border: 1px solid var(--border-color);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-box-shadow);
}

.services-cta,
.steps-cta,
.pricing-cta,
.pricing-list-cta,
.testimonial-cta,
.testimonial-cta-micro,
.faq-cta,
.final-cta-buttons,
.item-cta,
.pricing-list-cta-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 2.5rem;
}

.hero-buttons a,
.header-cta-btn,
.pricing-list-cta-buttons a,
.testimonial-cta a,
.final-cta-buttons a,
.steps-cta a,
.booking-contact-box-cta a {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease-out;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary,
.header-cta-btn {
  background-color: var(--primary-color);
  color: var(--clr-neutral-white);
}

.btn-primary:hover,
.header-cta-btn:hover,
#booking-form button:hover {
  background-color: var(--cta-btn-hover-color);
  color: var(--clr-neutral-white);
}

.services-cta-btn,
.pricing-cta-btn,
.item-cta-btn {
  background: transparent;
  position: relative;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--primary-color);
  border-radius: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.5, 0, 0.3, 1);
  display: inline-block;
}

.services-cta-btn:hover,
.pricing-cta-btn:hover,
.item-cta-btn:hover {
  background-color: var(--section-bg-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  border-radius: 999px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.btn-primary:active,
.btn-secondary:active,
.header-cta-btn:active,
#contact-form button:active,
#booking-form button:active,
.services-cta-btn:active,
.pricing-cta-btn:active,
.item-cta-btn:active {
  transform: scale(0.97);
}

.booking-hero-content,
.pricing-hero-content,
.contact-hero-content,
.services-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.booking-hero h1,
.pricing-hero h1,
.contact-hero h1,
.services-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  max-width: 50rem;
  line-height: 1.2;
}

.hero-subtext,
.booking-hero-subtext,
.pricing-hero-subtext,
.contact-hero-subtext,
.services-hero-subtext {
  font-size: 1.0625rem;
  max-width: 37.5rem;
}

.hero-subtext,
.booking-hero-subtext {
  margin: 1.25rem 0 1.875rem;
}

.services-hero-subtext,
.pricing-hero-subtext,
.contact-hero-subtext {
  margin: 1.25rem auto 0;
}

.hero-trust-item,
.booking-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}

.hero-trust-item,
.booking-trust-item,
.hero-trust-item i,
.booking-trust-item i {
  font-size: 0.95rem;
}

.hero-trust-item i,
.booking-trust-item i {
  color: var(--accent-color);
  flex-shrink: 0;
}

.service-description,
.pricing-amount {
  margin: 0.5rem 0;
}

.why-card,
.value-card,
.benefit-card,
.garment-card,
.contact-help-card {
  padding: var(--card-padding);
  transition: transform 0.3s ease-in-out;
}

.why,
.step,
.value,
.benefit,
.process,
.garment,
.pricing-explainer,
.contact-help {
  margin: 1rem 0 0.5rem;
  line-height: 1.5;
}

.step-card,
.process-card,
.pricing-explainer-card,
.service-card-content {
  padding: var(--card-padding);
}

#map,
.section-heading,
.step-card,
.process-card,
.pricing-explainer-card {
  text-align: center;
}

.why-icon,
.value-icon,
.benefit-icon,
.garment-icon,
.contact-help-icon {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--section-bg-color);
  border-radius: 0.75rem;
  color: var(--accent-color);
  font-size: 1.875rem;
}

/* Hover lift for devices that support hover */
@media (hover: hover) {
  .why-card:hover,
  .value-card:hover,
  .pricing-card:hover,
  .benefit-card:hover,
  .garment-card:hover,
  .contact-help-card:hover {
    transform: translateY(-5px);
  }
}

/* Tap feedback on all devices */
.why-card:active,
.value-card:active,
.pricing-card:active,
.benefit-card:active,
.garment-card:active,
.contact-help-card:active {
  transform: translateY(-5px);
}

#contact strong,
.pricing-note span,
.testimonials-subtitle span,
.contact-subtitle span,
.services-subtitle span,
.steps-subtitle span,
.final-cta-subtitle span,
.benefits-subtitle span,
.what-we-clean-subtitle span,
.who-we-serve-subtitle span,
.contact-hero-subtext span,
.services-hero-subtext span {
  font-weight: 600;
}

.pricing-note,
.what-we-clean-footer {
  max-width: 40.625rem;
  margin: 1.875rem auto 0;
  text-align: center;
  font-size: 0.95rem;
}

.service-areas-grid,
.who-we-serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.service-area,
.who-we-serve-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--clr-neutral-white);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  transition: all 0.3s ease-in-out;
}

.service-area:hover,
.who-we-serve-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.faq-subtitle,
.pricing-faq-subtitle,
.map-title,
.map-subtitle {
  margin-bottom: 1.5rem;
}

.final-cta-buttons,
.pricing-list-cta-buttons {
  gap: 1rem;
}

/* Form error-message */
.contact-error-message,
.booking-error-message {
  color: red;
  font-size: 0.9375rem;
  margin-top: 0.25rem;
}

/* GENERAL STYLES */

body {
  background-color: var(--clr-neutral-white);
  font-family: "Inter", sans-serif;
  height: 100svh;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  color: var(--primary-color);
}

header {
  padding: 1.25rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--clr-neutral-white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease-in-out;
}

.logo img {
  width: 180px;
  height: auto;
}

.container {
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
}

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

nav ul {
  list-style: none;
  display: flex;
}

nav a {
  text-decoration: none;
  margin-inline: 0.5em;
  color: var(--primary-color);
  font-size: 1.125rem;
  font-weight: 500;
  transition: 0.3s ease;
}

nav a:hover,
.nav-links .active {
  color: var(--accent-color);
}

.nav-links .active {
  font-weight: 600;
}

.no-scroll {
  overflow: hidden;
  height: 100dvh;
}

nav .cta-mobile,
#menu-toggle,
.hamburger {
  display: none;
}

.hamburger {
  flex-direction: column;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.hamburger span {
  background: var(--primary-color);
  width: 1.875rem;
  height: 0.1875rem;
  margin: 0.1875rem 0;
  transition: 0.3s;
}

.page-content {
  padding-top: 5rem;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */

.hero {
  padding: 11.25rem 1rem 7.5rem;
  text-align: start;
}

.hero-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}

.hero-text-content {
  max-width: 37.5rem;
}

.hero-text-content,
.hero-image {
  flex: 1;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  max-width: 43.75rem;
  line-height: 1.2;
}

.hero h1,
.hero-subtext {
  color: var(--primary-color);
  animation: fadeUp 1s ease-out forwards;
}

.hero-subtext,
.booking-hero-subtext,
.pricing-hero-subtext,
.contact-hero-subtext,
.hero-trust-item,
.hero-social-proof {
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--primary-color);
}

.final-cta-buttons .btn-secondary {
  background: var(--clr-neutral-white);
}

.btn-secondary:hover,
.final-cta-buttons .btn-secondary:hover {
  background-color: var(--whatsapp-color);
  border-color: var(--whatsapp-color);
  color: var(--clr-neutral-white);
}

.arrow-icon {
  margin-left: 0.25rem;
}

.whatsapp-icon {
  margin-right: 0.25rem;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.75rem 2.5rem;
  margin-top: 1.875rem;
}

.hero-social-proof {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Services Section */

.services-hero-subtext {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.service-card {
  overflow: hidden;
}

/* How It Works Section */

.step-number {
  background: var(--primary-color);
  color: var(--clr-neutral-white);
  font-size: 1.375rem;
  font-weight: bold;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: var(--section-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* What We Clean Section */

.what-we-clean-title {
  max-width: 43.75rem;
  margin: 0 auto 1.5rem;
}

/* Who We Serve Section */

.who-we-serve-card {
  justify-content: center;
  font-weight: 600;
}

/* Pricing Section */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
  margin-top: 2.5rem;
}

.pricing-card {
  background: var(--clr-neutral-white);
  padding: 1.875rem;
  box-shadow: var(--card-box-shadow);
  transition: transform 0.3s ease-in-out;
}

.pricing-amount strong {
  font-size: 1.875rem;
  font-weight: 800;
}

.pricing-amount strong,
.pricing-amount span {
  display: block;
}

.pricing-amount span {
  font-size: 0.9375rem;
}

/* Pricing List Table */

.pricing-list-content {
  max-width: 50rem;
}

.pricing-table-wrapper {
  margin-top: 2.5rem;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-neutral-white);
  border: 1px solid var(--border-color);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.pricing-table thead {
  background: var(--primary-color);
}

.pricing-table thead th {
  color: var(--clr-neutral-white);
  font-size: 1.2rem;
  font-weight: 600;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.5rem;
}

.pricing-table th,
.pricing-table td,
.table-category td {
  text-align: left;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.table-category td {
  background: var(--section-bg-color);
  color: var(--primary-color);
  font-size: 1.15rem;
}

.table-category td,
.pricing-table tbody tr:not(.table-category) td:last-child,
.pricing-table thead th:last-child {
  font-weight: 700;
}

.pricing-table tbody tr:not(.table-category) td:last-child,
.pricing-table thead th:last-child {
  text-align: right;
  white-space: nowrap;
}

/* About Section */

.about-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(image/foldora-about-hero.webp) center/cover no-repeat;
  padding: 12.5rem 1rem 9.375rem;
  text-align: center;
}

.about-hero h1,
.about-hero-subtext {
  color: var(--secondary-color);
}

.about-hero h1 {
  font-size: 3rem;
  line-height: 1.3;
}

.about-hero-subtext {
  font-size: 1.1rem;
  margin: 1.25rem auto 0;
  max-width: 37.5rem;
  opacity: 0.8;
}

.about-content,
.about-story-content {
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: center;
}

.about-text,
.about-story-text {
  flex: 1 1 50%;
}

.about-title,
.about-story-title {
  text-align: start;
}

.about-description,
.about-story-description {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  text-align: justify;
  opacity: 0.8;
}

.about-btn {
  text-decoration: none;
  background-color: var(--section-bg-color);
  color: var(--primary-color);
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
  transition:
    background-color 0.3s ease-out,
    color 0.3s ease-out,
    transform 0.3s ease-out;
}

.about-btn:hover {
  background-color: var(--clr-neutral-white);
}

.about-btn:active {
  transform: scale(0.97);
}

/* Testimonials Section */

.testimonial-card {
  padding: 1.875rem;
  transition: transform 0.3s ease-in-out;
}

@media (hover: hover) {
  .testimonial-card:hover {
    transform: scale(1.05);
  }
}

.testimonial-card:active {
  transform: scale(1.05);
}

.testimonial-card-quote {
  margin: 1rem 0;
  opacity: 0.8;
  font-style: italic;
}

.testimonial-card-quote,
.testimonial-cta-micro {
  font-size: 0.95rem;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  line-height: 1.4;
}

.testimonial-card-image {
  width: 3.125rem;
  height: 3.125rem;
  object-fit: cover;
  border-radius: 50%;
}

.client-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.client-bio {
  opacity: 0.7;
  font-size: 0.9375rem;
  font-weight: 400;
}

.star-icon {
  color: #ffd500;
}

/* Service Areas Section */

.service-area i {
  color: var(--accent-color);
  font-size: 0.95rem;
}

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

/* FAQ Section */

.faq-content {
  max-width: 50rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--secondary-color);
}

.plus-sign {
  font-size: 1.25rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-question,
.faq-answer {
  padding: 0.75rem 1rem;
}

.faq-answer {
  display: none;
  font-size: 0.95rem;
  opacity: 0.8;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .plus-sign {
  transform: rotate(45deg);
}

.faq-cta a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
}

/* Contact Section */

.contact-info-grid {
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background: var(--clr-neutral-white);
  border: 1px solid var(--border-color);
  border-radius: var(--card-border-radius);
  padding: var(--card-padding);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-card p {
  opacity: 0.8;
}

.contact-card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contact-card-content a {
  color: inherit;
  text-decoration: none;
}

.contact-card-content span,
.contact-card h4 {
  font-weight: 500;
}

.contact-card h4,
.contact-icon {
  font-size: 1.25rem;
}

.contact-info,
#contact-form {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
}

#contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

#contact-form label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#contact-form input,
#contact-form textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  box-sizing: border-box;
  outline: none;
  font-size: 0.95rem;
}

#contact-form button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--clr-neutral-white);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  border-radius: 0.5rem;
  margin-top: 0.875rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition:
    background-color 0.3s ease-out,
    box-shadow 0.3s ease-out,
    transform 0.3s ease-out;
}

#contact-form button:hover {
  background-color: var(--accent-color);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.contact-response-time {
  margin-top: 1rem;
  font-size: 0.9375rem;
}

/* Contact Form error-message */
.error-message {
  color: red;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* Map */

.map-title {
  font-size: 1.875rem;
}

.map-embed {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.map-embed iframe {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  display: block;
}

/* Final CTA Section */

#final-cta .container {
  background: #0f3d2e;
  border-radius: 1rem;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-title,
.final-cta-subtitle {
  color: var(--secondary-color);
}

/* Booking Section */

.booking-trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.booking-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary-color);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.booking-info-card {
  background: var(--section-bg-color);
  padding: 1.875rem;
  border: 1px solid var(--border-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.booking-step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--clr-neutral-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-info-card,
#booking-form {
  width: 100%;
  max-width: 37.5rem;
  margin: 2.5rem auto auto;
}

#booking-form {
  background: var(--secondary-color);
  padding: 1.875rem;
  border: 1px solid var(--border-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.booking-contact-box {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.booking-contact-box-title {
  margin-bottom: 0.5rem;
}

.booking-contact-box-subtitle {
  margin-bottom: 1rem;
  opacity: 0.8;
}

.booking-contact-box-cta a {
  background-color: var(--clr-neutral-white);
}

.booking-reassurance {
  margin: 1rem 0;
  text-align: center;
  font-size: 0.9375rem;
}

#booking-form label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4375rem;
}

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

.form-row .form-group {
  flex: 1;
}

#booking-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.625rem;
}

#booking-form input,
#booking-form textarea,
#booking-form select {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.9375rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  box-sizing: border-box;
  outline: none;
}

#booking-form input:focus,
#booking-form textarea:focus {
  border: 2px solid var(--primary-color);
}

#booking-form textarea {
  resize: vertical;
  min-height: 3.75rem;
}

#booking-form button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  background-color: var(--primary-color);
  color: var(--clr-neutral-white);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition:
    background-color 0.3s ease-out,
    transform 0.3s ease-out;
}

/* Footer */

footer {
  background-color: var(--section-bg-color);
  padding: 2.5rem 1rem 1.25rem;
  position: relative;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  gap: 2rem;
  max-width: 75rem;
  margin: 0 auto;
}

.footer-section h3,
.footer-logo {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-logo img {
  display: inline-block;
  width: 160px;
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-section p {
  font-size: 0.95rem;
}

.footer-section p,
.footer-links {
  opacity: 0.8;
}

.footer-links,
.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.footer-section span {
  font-weight: 500;
}

.footer-section address {
  margin-top: 0.5rem;
}

.footer-section address a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
}

.footer-section address a:hover {
  text-decoration: underline;
}

.footer-section p i {
  margin: 0 0.5rem 0.75rem 0;
  font-size: 1.25rem;
}

.footer-section p,
.footer-links a,
.footer p i,
.social-icons a {
  color: var(--primary-color);
}

.footer-links a:hover,
.social-icons a:hover {
  color: green;
}

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

.social-icons a {
  font-size: 1.25rem;
  transition: color 0.3s ease-out;
}

.copyright {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.copyright,
.copyright a {
  color: var(--primary-color);
}

.copyright a {
  text-decoration: none;
  font-weight: 600;
}

.copyright a:hover {
  text-decoration: underline;
}

.fa-brands.whatsapp-chat-btn,
.back-to-top-btn {
  position: fixed;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  right: 1.25rem;
  z-index: 1000;
  text-decoration: none;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fa-brands.whatsapp-chat-btn {
  background-color: var(--whatsapp-color);
  font-size: 1.5rem;
  bottom: 1.25rem;
  animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.back-to-top-btn {
  background-color: var(--primary-color);
  font-size: 1.25rem;
  transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out;
  bottom: 5rem;
}

.back-to-top-btn:hover {
  opacity: 0.8;
}

.back-to-top-btn:active {
  transform: scale(0.95);
}

/* Media Queries */

@media (max-width: 767px) {
  .logo img,
  .footer-logo img {
    width: 160px;
  }

  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 90%;
    height: 100dvh;
    background: var(--section-bg-color);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    opacity: 0;
    text-align: center;
    padding: 7.5rem 0;
  }

  nav ul {
    flex-direction: column;
  }

  nav li {
    margin: 0.625rem 0;
  }

  nav .cta-mobile {
    display: block;
    margin: auto;
    width: auto;
    max-width: fit-content;
    box-sizing: border-box;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition:
      background-color 0.3s ease-out,
      color 0.3s ease-out,
      box-shadow 0.3s ease-out,
      transform 0.3s ease-out;
  }

  nav .cta-mobile:hover {
    background-color: var(--cta-btn-hover-color);
    color: var(--clr-neutral-white);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
  }

  nav .cta-mobile:active {
    transform: scale(0.97);
  }

  .cta-desktop {
    display: none;
  }

  /* Show menu when checkbox is checked */
  #menu-toggle:checked + .hamburger + nav {
    transform: translateX(0);
    opacity: 1;
  }

  /* Animate Hamburger icon */
  #menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 5px);
  }

  #menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -5px);
  }

  .hero-text-content {
    width: 100%;
  }

  .hero h1,
  .about-hero h1,
  .booking-hero h1,
  .pricing-hero h1,
  .contact-hero h1,
  .services-hero h1 {
    font-size: 2.15rem;
    margin: 0 auto;
  }

  .hero-subtext {
    margin: 1.25rem auto 1.875rem;
  }

  .hero h1,
  .booking-hero h1,
  .pricing-hero h1,
  .contact-hero h1,
  .services-hero h1,
  h2,
  h3,
  h4 {
    line-height: 1.5;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-grid,
  .hero-buttons,
  .about-title,
  .about-subtitle,
  .about-story-title,
  .about-text,
  .about-story-text,
  .booking-contact-box,
  .contact-response-time {
    text-align: center;
  }

  .hero-grid,
  .hero-buttons,
  .final-cta-buttons,
  .pricing-list-cta-buttons,
  #booking-form .form-row {
    flex-direction: column;
  }

  .hero-trust-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-info-grid,
  .booking-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  #booking-form {
    order: 1;
  }

  .booking-info-card {
    order: 2;
  }

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

  .about-content,
  .about-story-content {
    flex-direction: column-reverse;
  }

  .about-btn {
    display: block;
    margin: 1.5rem auto 0;
    max-width: fit-content;
  }

  .pricing-amount strong {
    font-size: 1.75rem;
  }

  #final-cta .container {
    padding: 5rem 1.275rem;
  }

  .booking-info-card,
  #booking-form {
    padding: var(--card-padding);
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 90%;
    height: 100dvh;
    background: var(--section-bg-color);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    opacity: 0;
    text-align: center;
    padding: 7.5rem 0;
  }

  nav li {
    margin: 0.625rem 0;
  }

  nav .cta-mobile {
    display: block;
    margin: auto;
    width: auto;
    max-width: fit-content;
    box-sizing: border-box;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition:
      background-color 0.3s ease-out,
      color 0.3s ease-out,
      box-shadow 0.3s ease-out,
      transform 0.3s ease-out;
  }

  nav .cta-mobile:hover {
    background-color: var(--cta-btn-hover-color);
    color: var(--clr-neutral-white);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
  }

  nav .cta-mobile:active {
    transform: scale(0.97);
  }

  nav ul,
  .hero-grid {
    flex-direction: column;
  }

  .cta-desktop {
    display: none;
  }

  #menu-toggle:checked + .hamburger + nav {
    transform: translateX(0);
    opacity: 1;
  }

  #menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 5px);
  }

  #menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -5px);
  }

  .about-hero h1,
  .hero h1 {
    font-size: 2.5rem;
    max-width: 40.625rem;
    margin: 0 auto;
  }

  .hero-subtext {
    margin: 1.25rem auto 1.875rem;
  }

  .hero h1,
  .about-hero h1,
  .booking-hero h1,
  .pricing-hero h1,
  .services-hero h1,
  h2,
  h3,
  h4 {
    line-height: 1.5;
  }

  .hero-buttons,
  .hero-trust-bar {
    justify-content: center;
  }

  .hero-grid,
  .about-title,
  .about-story-title,
  .about-text,
  .about-story-text,
  .booking-contact-box {
    text-align: center;
  }

  .about-content,
  .about-story-content {
    flex-direction: column-reverse;
  }

  .about-btn {
    display: block;
    margin: 1.5rem auto 0;
    max-width: fit-content;
  }

  .contact-info-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  #booking-form {
    order: 1;
  }

  .booking-info-card {
    order: 2;
  }

  .pricing-hero h1,
  .contact-hero h1,
  .final-cta-subtitle,
  .services-title,
  .about-title,
  .about-story-title,
  .testimonials-title,
  .who-we-serve-title,
  .contact-help-title,
  .benefits-title {
    max-width: 37.5rem;
  }

  .final-cta-subtitle,
  .final-cta-title,
  .steps-subtitle,
  .pricing-subtitle,
  .pricing-note {
    max-width: 31.25rem;
  }

  .services-title,
  .about-title,
  .about-story-title,
  .testimonials-title,
  .final-cta-title,
  .who-we-serve-title,
  .contact-help-title,
  .benefits-title {
    margin: 0 auto 1.25rem;
  }

  .pricing-note {
    margin: 2.5rem auto 0;
  }

  .faq-content {
    max-width: 40.625rem;
  }
}
