/* ========================================
   CTA Section Styles
   ======================================== */

/* ----------------------------------------
   CTA Section
   ---------------------------------------- */
.l-section--cta {
  padding: 85px 0;
  background-color: #f9f8f5;
}

.l-container--cta {
  max-width: 1000px;
}

.l-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.l-cta-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.l-cta-right {
  flex-shrink: 0;
}

.c-heading--cta {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  font-weight: 500;
  color: #333;
  text-align: left;
  margin-bottom: 10px;
  letter-spacing: 3.2px;
}

.c-label--cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--col-main);
  letter-spacing: 1.82px;
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 40px;
}

.l-cta-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.l-cta-phone:hover {
  opacity: 0.8;
}

.c-cta-phone__icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-cta-phone__icon img {
  width: 25px;
  height: 25px;
}

.c-cta-phone__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--col-main);
  margin: 0;
  letter-spacing: 0;
}

.l-cta-buttons {
  display: flex;
  gap: 20px;
}

.c-cta-button {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.c-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.c-cta-button--web {
  background-color: var(--col-accent);
}

.c-cta-button--phone {
  background-color: var(--col-main);
}

.c-cta-button__icon {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-cta-button__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 24px;
  letter-spacing: 1.6px;
  margin: 0;
}

/* ----------------------------------------
   Responsive
   ---------------------------------------- */
@media (max-width: 768px) {
  .l-section--cta {
    padding: 80px 0;
  }

  .l-cta-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .l-cta-left {
    align-items: center;
    text-align: center;
  }

  .c-heading--cta {
    font-size: 24px;
    letter-spacing: 2.4px;
    margin-bottom: 10px;
    text-align: center;
  }

  .c-label--cta {
    text-align: center;
    margin-bottom: 30px;
  }

  .l-cta-phone {
    justify-content: center;
  }

  .l-cta-buttons {
    gap: 30px;
  }

  .c-cta-button {
    width: 160px;
    height: 160px;
  }

  .c-cta-button__text {
    font-size: 14px;
  }

  .c-cta-phone__number {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .l-cta-content {
    gap: 30px;
  }

  .c-heading--cta {
    font-size: 20px;
  }

  .l-cta-buttons {
    gap: 20px;
  }

  .c-cta-button {
    width: 140px;
    height: 140px;
  }

  .c-cta-phone__number {
    font-size: 20px;
  }
}

