*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f5f8ff;
  color: #1b2a4a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:focus,
button:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

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

.container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

/* KEYFRAME ANIMATIONS */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  33% {
    transform: translateY(-5px);
  }

  66% {
    transform: translateY(2px);
  }
}

/* HEADER */
header {
  background-color: #e9f0fc;
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(27, 42, 74, 0.1);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.header-contact {
  font-size: 0.875rem;
  color: #0d4a99;
  font-weight: 600;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.header-logo img {
  width: 60px;
  height: 60px;
}

nav {
  display: none;
}

nav a {
  margin-left: 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #0d4a99;
  transition: color 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

nav a:hover,
nav a:focus {
  color: #003e7d;
  text-decoration: underline;
}

/* Style the burger icon */
.burger-menu {
  display: flex;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 20px;
  margin-right: -30px;
}

.burger-icon {
  background-color: #0d4a99;
  width: 30px;
  height: 3px;
  display: none;
  border-radius: 5px;
  transition: 0.3s;
  position: relative;
}

.burger-icon:before,
.burger-icon:after {
  content: '';
  background-color: #0d4a99;
  width: 30px;
  height: 3px;
  border-radius: 5px;
  position: absolute;
  transition: 0.3s;
}

.burger-icon:before {
  top: -8px;
}

.burger-icon:after {
  top: 8px;
}

.burger-menu.active .burger-icon {
  transform: rotate(45deg);
}

.burger-menu.active .burger-icon:before {
  transform: rotate(90deg);
  top: 0;
}

.burger-menu.active .burger-icon:after {
  transform: rotate(90deg);
  top: 0;
}

/* MAIN HERO */
.hero {
  position: relative;
  background: linear-gradient(135deg, #3e82f7 20%, #1b54c8 80%);
  color: white;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 600px;
}

.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.hero-text {
  max-width: 600px;
  margin-bottom: 2rem;
  text-align: left;
}

.hero-text small {
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.85;
  display: block;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.1;
  font-family: 'Poppins', sans-serif;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-text p {
  font-weight: 500;
  font-size: 1.125rem;
  max-width: 400px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-images {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 800px;
  min-width: 200px;
  display: flex;
  justify-content: right;
  align-items: flex-end;
  margin-left: auto;
  margin-bottom: -50px;
  animation: fadeInRight 1.2s ease-out 0.8s both;
}

.hero-images img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* PRODUCTS */
.products-section {
  text-align: center;
  padding: 3rem 1rem 4rem;
  background: #f5f8ff;
}

.products-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #0d4a99;
  animation: fadeInUp 1s ease-out;
}

.products-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #1b54c8;
  border-radius: 24px;
  color: white;
  flex: 1 1 280px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  box-shadow: 0 12px 24px rgba(27, 84, 200, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  animation: fadeInScale 0.8s ease-out both;
}

.product-card:nth-child(1) {
  animation-delay: 0.2s;
}

.product-card:nth-child(2) {
  animation-delay: 0.4s;
}

.product-card:nth-child(3) {
  animation-delay: 0.6s;
}

.product-card:hover,
.product-card:focus-within {
  box-shadow: 0 20px 40px rgba(27, 84, 200, 0.5);
  transform: translateY(-5px);
}

.product-text {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  max-width: 160px;
  text-align: center;
  margin-top: 2rem;
}

.product-detail {
  background-color: #ffffff;
  padding: 1rem;
  color: #0d4a99;
  margin-top: 1rem;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 16px rgba(27, 84, 200, 0.2);
  font-size: 1rem;
  width: 100%;
  text-align: center;
  flex-grow: 1;
}

.product-detail ul {
  list-style-type: none;
  padding: 0;
}

.product-detail ul li {
  margin-bottom: 0.5rem;
  text-align: center;
}

.product-detail strong {
  display: block;
  margin-bottom: 0.5rem;
}

/* SECTION: Housepital promotion */
.housepital-section {
  position: relative;
  color: #0d4a99;
  text-align: center;
  padding: 5rem 1rem 6rem;
  background-color: #f5f8ff;
  width: 100%;
  margin: 0;
  box-shadow: 0 14px 40px rgba(27, 42, 74, 0.15);
}

.housepital-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-family: 'Poppins', sans-serif;
  animation: fadeInUp 1s ease-out;
}

.housepital-section p.subtitle {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.card {
  border: 0px;
}

.housepital-section .cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.housepital-section .card {
  background: transparent;
  width: 22rem;
  transition: transform 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.housepital-section .card:nth-child(1) {
  animation-delay: 0.3s;
}

.housepital-section .card:nth-child(2) {
  animation-delay: 0.4s;
}

.housepital-section .card:nth-child(3) {
  animation-delay: 0.5s;
}

.housepital-section .card:nth-child(4) {
  animation-delay: 0.6s;
}

.housepital-section .card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.housepital-section .card:hover {
  transform: translateY(-10px);
}

.housepital-section .card-label {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1b2a4a;
}

/* WORKFLOW */
.workflow-section {
  background-color: #1b54c8;
  color: white;
  padding: 4rem 1rem 6rem;
  text-align: center;
}

.workflow-section h2 {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out;
}

.workflow-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.workflow-line {
  position: absolute;
  top: 50%;
  left: 6%;
  right: 6%;
  height: 14px;
  border-bottom: 2px dashed #d1d9ef;
  z-index: 1;
  transform: translateY(-50%);
  animation: fadeInScale 1.5s ease-out 0.5s both;
}

.workflow-steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

.workflow-step {
  background: rgba(255 255 255 / 0.16);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  box-shadow: 0 4px 14px rgba(255 255 255 / 0.2);
  transition: all 0.3s ease;
  animation: fadeInScale 0.8s ease-out both;
}

.workflow-step:nth-child(1) {
  animation-delay: 0.2s;
}

.workflow-step:nth-child(2) {
  animation-delay: 0.4s;
}

.workflow-step:nth-child(3) {
  animation-delay: 0.6s;
}

.workflow-step:nth-child(4) {
  animation-delay: 0.8s;
}

.workflow-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255 255 255 / 0.3);
}

.stepper-dots {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  transform: translateY(-50%);
  animation: fadeInUp 1s ease-out 1s both;
}

.stepper-dot {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 2px solid #d1d9ef;
  animation: pulse 2s ease-in-out infinite alternate;
}

.stepper-dots .stepper-dot:first-child {
  background-image: url('assets/images/whatsapp.png');
  background-size: cover;
  background-position: center;
  border: none;
  width: 30px;
  height: 30px;
}
/* ------------------------------------------------------------------------ */

/* FAQ Section Styles */
.faq-section {
  background-color: #f5f8ff;
  padding: 4rem 1rem 5rem;
  min-height: 80vh;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #0d4a99;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.faq-header p {
  font-size: 1.125rem;
  color: #1b2a4a;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-search {
  margin-bottom: 2rem;
  position: relative;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e9f0fc;
  border-radius: 16px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  background-color: white;
  color: #1b2a4a;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
  transform: translateY(-2px);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #0d4a99;
  width: 20px;
  height: 20px;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.category-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #e9f0fc;
  background-color: white;
  color: #0d4a99;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background-color: #1b54c8;
  color: white;
  border-color: #1b54c8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 84, 200, 0.3);
}

.faq-list {
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(27, 42, 74, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
}

.faq-item:nth-child(1) {
  animation-delay: 0.5s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.6s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.7s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.8s;
}

.faq-item:nth-child(5) {
  animation-delay: 0.9s;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(27, 42, 74, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1b2a4a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #0d4a99;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: #0d4a99;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 300px;
  height: auto;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: #1b2a4a;
  line-height: 1.6;
  opacity: 0.9;
}

.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: #1b2a4a;
  opacity: 0.7;
  animation: fadeInUp 1s ease-out;
}

.no-results h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-cta {
  background: linear-gradient(135deg, #3e82f7 20%, #1b54c8 80%);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
  animation: fadeInUp 1s ease-out 1s both;
}

.contact-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.contact-btn {
  background-color: white;
  color: #1b54c8;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(27, 84, 200, 0.1), transparent);
  transition: left 0.6s ease;
}

.contact-btn:hover::before {
  left: 100%;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
/* ------------------------------------------------------------------------ */
/* FOOTER */
footer {
  background: url('https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/a0ba5aa6-1f87-456f-8326-9bf1771fd952.png') center/cover no-repeat;
  padding: 4rem 1rem 5rem;
  color: #1b2a4a;
  position: relative;
  box-shadow: inset 0 0 0 1000px rgba(255 255 255 / 0.92);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  animation: fadeInUp 1s ease-out;
}

.footer-column h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: #1b2a4a;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  color: #1b2a4a;
  transition: color 0.2s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.footer-column:nth-child(1) ul li:nth-child(1) {
  animation-delay: 0.3s;
}

.footer-column:nth-child(1) ul li:nth-child(2) {
  animation-delay: 0.4s;
}

.footer-column:nth-child(1) ul li:nth-child(3) {
  animation-delay: 0.5s;
}

.footer-column:nth-child(2) ul li:nth-child(1) {
  animation-delay: 0.6s;
}

.footer-column:nth-child(2) ul li:nth-child(2) {
  animation-delay: 0.7s;
}

.footer-column:nth-child(3) ul li:nth-child(1) {
  animation-delay: 0.8s;
}

.footer-column ul li:hover,
.footer-column ul li:focus {
  color: #0d4a99;
  outline: none;
  text-decoration: underline;
}

.footer-social {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  display: flex;
  gap: 1.25rem;
  animation: fadeInLeft 1s ease-out 1s both;
}

.footer-social button {
  background: transparent;
  border: 2px solid #1b2a4a;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.footer-social button:nth-child(1) {
  animation-delay: 0s;
}

.footer-social button:nth-child(2) {
  animation-delay: 0.5s;
}

.footer-social button:nth-child(3) {
  animation-delay: 1s;
}

.footer-social button:hover,
.footer-social button:focus {
  background-color: #0d4a99;
  border-color: #0d4a99;
  outline: none;
  transform: translateY(-2px);
}

.footer-social svg {
  fill: #1b2a4a;
  transition: fill 0.3s ease;
  width: 28px;
  height: 28px;
}

.footer-social button:hover svg,
.footer-social button:focus svg {
  fill: white;
}

.footer-logo {
  position: absolute;
  bottom: 2rem;
  right: 1rem;
  background-color: #0d4a99;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(13, 74, 153, 0.4);
  transition: all 0.3s ease;
  animation: fadeInRight 1s ease-out 1s both;
}

.footer-logo:hover,
.footer-logo:focus {
  background-color: #064a85;
  outline: none;
  transform: translateY(-2px);
}

.footer-logo svg {
  fill: white;
  width: 28px;
  height: 28px;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .hero-images {
    max-width: 700px;
  }
}

@media (max-width: 950px) {
  .hero-images {
    max-width: 600px;
  }
}

@media (max-width: 850px) {
  .hero-images {
    max-width: 550px;
  }
}

@media (min-width: 768px) {
  nav {
    display: flex;
    align-items: center;
  }

  .workflow-steps-wrapper .workflow-step:nth-child(odd) {
    margin-bottom: 13rem;
  }

  .workflow-steps-wrapper .workflow-step:nth-child(even) {
    margin-top: 13rem;
  }

  .hero-text h1 {
    font-size: 4.25rem;
  }

  .product-text {
    font-size: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .hero-images {
    margin-right: 100px;
  }
}

@media (max-width: 767px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .burger-menu {
    display: flex;
  }

  /* Make the nav links a vertical list and hidden by default */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #e9f0fc;
    width: 100%;
    padding: 0.5rem;
    z-index: 1000;
  }

  .burger-icon {
    display: block;
  }

  /* Show nav links when active */
  .nav-links.active {
    display: flex;
  }

  /* Style links in mobile menu */
  nav a {
    margin: 1rem 0;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: #0d4a99;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    animation: none;
  }

  nav a:hover,
  nav a:focus {
    color: #003e7d;
    text-decoration: underline;
  }

  .header-inner.container {
    padding: 0px;
    margin: 0;
  }

  .header-logo img {
    width: 45px;
    height: 45px;
    margin-left: 25px;
  }

  .stepper-dot {
    display: none;
  }

  .stepper-dots {
    display: none;
  }

  .faq-header h1 {
    font-size: 2rem;
  }

  .faq-categories {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .category-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.25rem;
  }

  .search-input {
    padding: 0.875rem 0.875rem 0.875rem 2.5rem;
  }

  .search-icon {
    left: 0.875rem;
  }

  .housepital-section .card {
    width: 45%;
  }

  .hero {
    height: auto;
  }

  .hero-images {
    position: static;
    margin-top: -54px;
    align-items: center;
    margin-bottom: -30px;
    margin-right: auto;
    animation: none;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
  }

  .products-cards {
    flex-direction: column;
    gap: 1.5rem;
  }

  .product-card {
    max-width: 100%;
  }

  .workflow-container {
    flex-direction: column;
    gap: 2rem;
    position: static;
  }

  .workflow-line {
    display: none;
  }

  .workflow-steps-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .workflow-step {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-social {
    position: static;
    margin-top: 2rem;
    justify-content: center;
  }

  .footer-logo {
    position: static;
    margin: 2rem auto 0 auto;
    display: block;
  }
}

/* ACCESSIBILITY - RESPECT USER PREFERENCES */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.chat-button-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.chat-button-text {
  background: linear-gradient(135deg, #3e82f7 20%, #1b54c8 80%);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-button {
  position: static;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3e82f7 20%, #1b54c8 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .chat-button-text {
    font-size: 12px;
    padding: 6px 10px;
    white-space: normal;
    text-align: center;
    max-width: 90px;
    line-height: 1.3;
  }
  .chat-button {
    width: 55px;
    height: 55px;
  }
  .chat-input {
    width:auto;
    font-size: 12px;
  }
  .chat-send{
    width: 35px;
    height: 35px;
  }
}

.chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.chat-button i {
  color: white;
  font-size: 24px;
}

.chat-widget {
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 400px;
  height: 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-header {
  background: linear-gradient(135deg, #3e82f7 20%, #1b54c8 80%);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h5 {
  margin: 0;
  font-weight: 600;
}

.chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  max-height: 350px;
}

.chat-message {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.chat-message.user {
  align-items: flex-end;
}

.chat-message.bot {
  align-items: flex-start;
}

.message-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  word-wrap: break-word;
  line-height: 1.4;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Text formatting styles for message content */
.message-bubble .formatted-text {
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  vertical-align: top;
}

.message-bubble .formatted-text strong {
  font-weight: 700;
}

.message-bubble .formatted-text .indented-text {
  display: inline;
  margin: 0;
  padding: 0;
}

/* Code block styling for better formatting */
.message-bubble .formatted-text code {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1px 3px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

.message-bubble .formatted-text pre {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 4px 6px;
  border-radius: 5px;
  overflow-x: auto;
  margin: 2px 0;
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  white-space: pre-wrap;
}

.chat-message.user .message-bubble {
  background: linear-gradient(135deg, #3e82f7 20%, #1b54c8 80%);
  color: white;
}

.chat-message.user .message-bubble .formatted-text code {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.chat-message.user .message-bubble .formatted-text pre {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.chat-message.bot .message-bubble {
  background: #f1f3f5;
  color: #333;
  border: 1px solid #e9ecef;
}

/* Booking Button Styles - Discord-like */
.message-actions {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  max-width: 80%;
}

.btn-booking {
  background: #25D366;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
}

.btn-booking:hover {
  background: #20b358;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
}

.btn-booking:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
}

.btn-booking i {
  font-size: 14px;
}

/* Alternative booking button styles */
.btn-booking-alt {
  background: linear-gradient(135deg, #3e82f7 20%, #1b54c8 80%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(62, 130, 247, 0.3);
}

.btn-booking-alt:hover {
  background: linear-gradient(135deg, #2c6ef0 20%, #1448b8 80%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(62, 130, 247, 0.4);
}

.chat-input-container {
  padding: 15px 20px;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 10px;
}

.chat-input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 10px 15px;
  outline: none;
  font-size: 14px;
}

.chat-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.chat-send {
  background: linear-gradient(135deg, #3e82f7 20%, #1b54c8 80%);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.chat-send:hover {
  transform: scale(1.05);
}

.chat-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.typing-indicator {
  display: none;
  align-items: center;
  gap: 8px;
  color: #666;
  font-style: italic;
  margin-bottom: 10px;
}

.typing-dots {
  display: flex;
  gap: 3px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: #666;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .whatsapp-button {
    width: 55px;
    height: 55px;
  }

  .chat-button {
    width: 55px;
    height: 55px;
  }

  .chat-widget {
    width: calc(100vw - 40px);
    bottom: 80px;
    left: 20px;
    right: 20px;
  }

  .message-bubble .formatted-text .indented-text {
    display: inline;
    margin: 0;
    padding: 0;
  }

  .btn-booking {
    font-size: 12px;
    padding: 6px 12px;
  }

  .message-actions {
    max-width: 90%;
  }
}